summaryrefslogtreecommitdiffstats
path: root/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'Makefile')
-rwxr-xr-xMakefile3
1 files changed, 2 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index e850d74..ace1cb4 100755
--- a/Makefile
+++ b/Makefile
@@ -5,8 +5,9 @@ CFLAGS = -std=c99 -pedantic -Wall -Wno-deprecated-declarations -Os
CC = gcc
+SRC = stats.c
all:
- ${CC} ${CFLAGS} main.c -o stats
+ ${CC} ${CFLAGS} ${SRC} -o stats
.PHONY: all clean dist install uninstall