about summary refs log tree commit diff stats
diff options
context:
space:
mode:
-rw-r--r--makefile4
1 files changed, 2 insertions, 2 deletions
diff --git a/makefile b/makefile
index e620a87c..cc8af389 100644
--- a/makefile
+++ b/makefile
@@ -3,12 +3,12 @@ all: mu_bin core.mu
 CXX ?= c++
 CFLAGS ?= -g -O3
 
-mu_bin: makefile enumerate/enumerate tangle/tangle mu.cc termbox/libtermbox.a
+mu_bin: makefile mu.cc termbox/libtermbox.a
 	${CXX} ${CFLAGS} -Wall -Wextra -fno-strict-aliasing mu.cc termbox/libtermbox.a -o mu_bin
 
 # To see what the program looks like after all layers have been applied, read
 # mu.cc
-mu.cc: [0-9]*.cc
+mu.cc: [0-9]*.cc enumerate/enumerate tangle/tangle
 	./tangle/tangle $$(./enumerate/enumerate --until zzz |grep -v '.mu$$') > mu.cc
 	make --no-print-directory autogenerated_lists