From: W. Trevor King Date: Mon, 1 Sep 2008 03:31:47 +0000 (-0400) Subject: Fixed some bugs with `make clean' X-Git-Tag: v0.5~11 X-Git-Url: http://git.tremily.us/?a=commitdiff_plain;h=7856f43e7614c9cb03de24433ebd476ae6e3b3d1;p=sawsim.git Fixed some bugs with `make clean' I had forgotten to clean up all the sawsim modules :p. --- diff --git a/src/sawsim.nw b/src/sawsim.nw index d4d5a9b..78ce2e7 100644 --- a/src/sawsim.nw +++ b/src/sawsim.nw @@ -5105,8 +5105,9 @@ profile : $(BIN_DIR)/sawsim_profile $(BIN_DIR) gprof $(BIN_DIR)/sawsim_profile gmon.out > $@ check : $(CHECK_BINS:%=$(BIN_DIR)/%) $(BIN_DIR)/check_sawsim $(SHELL) -e -c 'for B in $^; do ./$$B; done' -clean : $(CHECK_BINS:%=clean_%) clean_tension_model_utils \ - clean_k_model_utils clean_latex +clean : $(CHECK_BINS:%=clean_%) $(SAWSIM_MODS:%=clean_%) \ + clean_tension_model_utils \ + clean_k_model_utils clean_latex clean_check_sawsim rm -f $(BIN_DIR)/sawsim $(BIN_DIR)/sawsim_static \ $(BIN_DIR)/sawsim_profile $(BUILD_DIR)/sawsim.c \ $(BUILD_DIR)/interp.c $(BUILD_DIR)/interp.h \