diff options
| author | Florian Fischer <florian.fl.fischer@fau.de> | 2019-02-02 14:45:21 +0100 |
|---|---|---|
| committer | Florian Fischer <florian.fl.fischer@fau.de> | 2019-02-02 14:45:21 +0100 |
| commit | 8c12b0494aa241bb6ddf3779a99d2f5d6ededf73 (patch) | |
| tree | b7bcaf69bfc9c8d7933bcaaedc66a907a04c9ca6 /src/benchmarks/loop | |
| parent | 130765de719a3ddc475284e13749d09ff371a8e1 (diff) | |
| download | allocbench-8c12b0494aa241bb6ddf3779a99d2f5d6ededf73.tar.gz allocbench-8c12b0494aa241bb6ddf3779a99d2f5d6ededf73.zip | |
rework build system #2: call make before executing any benchmark
Make scans the project directory for Makefiles and executes them.
The targets should be build by the new targets/Makefile.
All included Makefiles are now "quiet" by default.
Diffstat (limited to 'src/benchmarks/loop')
| -rw-r--r-- | src/benchmarks/loop/Makefile | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/benchmarks/loop/Makefile b/src/benchmarks/loop/Makefile index 89914b2..b297933 100644 --- a/src/benchmarks/loop/Makefile +++ b/src/benchmarks/loop/Makefile @@ -15,10 +15,11 @@ LDFLAGS ?= -pthread -static-libgcc all: $(OBJDIR)/loop $(OBJDIR)/loop: loop.c | $(OBJDIR) + @echo compiling $@... $(CC) $(LDFLAGS) $(CFLAGS) -o $@ $< $(OBJDIR): - mkdir $@ + mkdir -p $@ clean: rm -rf $(OBJDIR) |
