aboutsummaryrefslogtreecommitdiff
path: root/makefile
diff options
context:
space:
mode:
Diffstat (limited to 'makefile')
-rw-r--r--makefile3
1 files changed, 3 insertions, 0 deletions
diff --git a/makefile b/makefile
index 07e42b8..1c4a023 100644
--- a/makefile
+++ b/makefile
@@ -31,6 +31,9 @@ bin:
31bin/%: src/%.cpp | bin 31bin/%: src/%.cpp | bin
32 c++ $(CPPFLAGS) $^ -o $@ 32 c++ $(CPPFLAGS) $^ -o $@
33 33
34bin/day24: src/day24.cpp | bin
35 c++ $(CPPFLAGS) -Wno-sign-conversion -I/usr/local/include $^ -L/usr/local/lib -lz3 -o $@
36
34clean: 37clean:
35 rm -rf bin 38 rm -rf bin
36 39