aboutsummaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile6
1 files changed, 3 insertions, 3 deletions
diff --git a/Makefile b/Makefile
index d42e6ea..d127f38 100644
--- a/Makefile
+++ b/Makefile
@@ -7,11 +7,11 @@ all: run
-include override.mk
-${DAY}: ${DAY}.c
+${DAY}.bin: ${DAY}.c
gcc ${CFLAGS} -o $@ $< ${DAYFLAGS}
-run: ${DAY} ${INPUT}
- ./${DAY} < ${INPUT}
+run: ${DAY}.bin ${INPUT}
+ ./${DAY}.bin < ${INPUT}
clean:
rm -f ${DAY}