]> git.llucax.com Git - software/dgc/dgcbench.git/blob - micro/Makefile
micro/rnd_data_2.d: Add a comment about expected memory usage
[software/dgc/dgcbench.git] / micro / Makefile
1
2 VERS    := naive
3 DC      := dmd
4 DL      := dmd
5 GNUPLOT := gnuplot
6 DFLAGS  += -release -inline -O
7 DFLAGS  += -defaultlib=tango-base-dmd-$(VERS) -debuglib=tango-base-dmd-$(VERS) \
8                 -L-ltango-user-dmd-$(VERS)
9
10 BUILD_DIR := $(VERS)
11 BIN_DIR   := $(BUILD_DIR)/bin
12 PLOT_DIR  := $(BUILD_DIR)/plot
13
14 sources  := $(wildcard *.d)
15 programs := $(addprefix $(BIN_DIR)/,$(sources:.d=))
16 graphs_c := $(addprefix $(PLOT_DIR)/,$(addsuffix .c.eps,$(sources:.d=)))
17 graphs   := $(graphs_c)
18
19 ifndef V
20 P      = @
21 P_DC   = @echo '  DC    $@';
22 P_LD   = @echo '  LD    $@';
23 P_CP   = @echo '  CP    $@';
24 P_PLOT = @echo '  PLOT  $@';
25 P_MAKE = @echo '  MAKE  $@';
26 P_RUN  = @echo '  RUN   $<';
27 endif
28
29 # create build directories if they don't already exist
30 ifneq ($(wildcard $(BIN_DIR) $(PLOT_DIR)),$(BIN_DIR) $(PLOT_DIR))
31 dummy_mkdir := $(shell mkdir -p $(BIN_DIR) $(PLOT_DIR))
32 endif
33
34 # don't use Gold with old DMDs
35 ifneq ($(shell ld --version | grep gold),)
36 export LD_ := /usr/bin/ld.single
37 endif
38
39 .PHONY: all
40 all: basic naive
41
42 .PHONY: naive basic
43 naive basic:
44         $(P_MAKE) $(MAKE) --no-print-directory build VERS=$@
45
46 .PHONY: build
47 build: $(programs)
48
49 $(BIN_DIR)/%: $(BIN_DIR)/%.o
50         $(P_LD) $(DC) $(DFLAGS) -of$@ $^
51
52 .INTERMEDIATE: $(BIN_DIR)/%.o
53 $(BIN_DIR)/%.o: %.d
54         $(P_DC) $(DC) $(DFLAGS) -c -of$@ $<
55
56 .PHONY: plot
57 plot: $(graphs)
58
59 $(PLOT_DIR)/%.c.eps: $(PLOT_DIR)/%.c.csv plot-c.gpi
60         $(P_PLOT) \
61         sed 's|@@PRG@@|$(*F)|g; s|@@COL@@|$(VERS)|g; s|@@IN@@|$<|g; s|@@OUT@@|$@|g' \
62         $(word 2,$^) | $(GNUPLOT)
63
64 .PRECIOUS: $(PLOT_DIR)/%.c.csv $(PLOT_DIR)/%.a.csv
65 $(PLOT_DIR)/%.c.csv $(PLOT_DIR)/%.a.csv: $(BIN_DIR)/%
66         $(P_RUN) ./$<
67         $P mv gc-collections.csv $(PLOT_DIR)/$*.c.csv
68         $P mv gc-mallocs.csv $(PLOT_DIR)/$*.a.csv
69
70 $(PLOT_DIR)/split.c.csv $(PLOT_DIR)/split.a.csv: $(BIN_DIR)/bible.txt
71
72 $(BIN_DIR)/bible.txt: bible.txt
73         $(P_CP) cp -l $< $@
74
75
76 .PHONY: clean
77 clean:
78         $(RM) -r $(BUILD_DIR)
79