From: Leandro Lucarella Date: Sat, 22 Aug 2009 22:48:14 +0000 (-0300) Subject: micro: Remove unneeded copy in Makefile X-Git-Url: https://git.llucax.com/software/dgc/dgcbench.git/commitdiff_plain/5b0d31198806563101200a3b5d435b1ddd6c2dbd micro: Remove unneeded copy in Makefile The bible.txt file doesn't have to be copied to $(BIN_DIR) because the program is executed from the same directory where bible.txt is. --- diff --git a/micro/Makefile b/micro/Makefile index 875104b..ce310b0 100644 --- a/micro/Makefile +++ b/micro/Makefile @@ -27,7 +27,6 @@ ifndef V P = @ P_DC = @echo ' DC $@'; P_LD = @echo ' LD $@'; -P_CP = @echo ' CP $@'; P_PLOT = @echo ' PLOT $@'; P_MAKE = @echo ' MAKE $@'; P_RUN = @echo ' RUN $<'; @@ -69,10 +68,6 @@ $(STAT_DIR)/%.c.csv $(STAT_DIR)/%.a.csv: $(BIN_DIR)/% $P mv gc-collections.csv $(STAT_DIR)/$*.c.csv $P mv gc-mallocs.csv $(STAT_DIR)/$*.a.csv -$(STAT_DIR)/split.c.csv $(STAT_DIR)/split.a.csv: $(BIN_DIR)/bible.txt - -$(BIN_DIR)/bible.txt: bible.txt - $(P_CP) cp -l $< $@ .PRECIOUS: $(STAT_DIR)/%.h.csv $(STAT_DIR)/%.h.csv: $(STAT_DIR)/%.a.csv