diff options
author | Kartik K. Agaram <vc@akkartik.com> | 2016-08-31 15:08:34 -0700 |
---|---|---|
committer | Kartik K. Agaram <vc@akkartik.com> | 2016-08-31 15:08:34 -0700 |
commit | a48008faa9b867f2bbdfefc99d239a4d215c20da (patch) | |
tree | 2909947f19f4d2e4579bf3499486dc52cdb331f2 /makefile | |
parent | 274ed0fc85e7c50fc0e551c5e376aebdb9a548f4 (diff) | |
download | mu-a48008faa9b867f2bbdfefc99d239a4d215c20da.tar.gz |
3289
Diffstat (limited to 'makefile')
-rw-r--r-- | makefile | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/makefile b/makefile index 9fb9cad3..86d9fab9 100644 --- a/makefile +++ b/makefile @@ -14,7 +14,6 @@ core.mu: [0-9]*.mu mu.cc makefile cat $$(./enumerate/enumerate --until zzz |grep '.mu$$') > core.mu mu_bin: mu.cc makefile function_list test_list cleave/cleave - @date @mkdir -p .build @cp function_list test_list .build @mkdir -p .build/termbox @@ -22,17 +21,14 @@ mu_bin: mu.cc makefile function_list test_list cleave/cleave ./cleave/cleave mu.cc .build @# recursive (potentially parallel) make to pick up BUILD_SRC after cleave @make .build/mu_bin - @date cp .build/mu_bin . BUILD_SRC=$(wildcard .build/*.cc) .build/mu_bin: $(BUILD_SRC:.cc=.o) termbox/libtermbox.a - @date ${CXX} ${LDFLAGS} .build/*.o termbox/libtermbox.a -o .build/mu_bin .build/%.o: .build/%.cc .build/header .build/global_declarations_list @# explicitly state default rule since we added dependencies - @date ${CXX} ${CXXFLAGS} -c $< -o $@ # To see what the program looks like after all layers have been applied, read @@ -51,7 +47,6 @@ cleave/cleave: cleave/cleave.cc rm -rf .build termbox/libtermbox.a: termbox/*.c termbox/*.h termbox/*.inl - @date cd termbox && make # auto-generated files; by convention they end in '_list'. |