distinguish between building all and really-all with EXTRAS
This commit is contained in:
parent
970c8a9570
commit
af084f328b
1 changed files with 4 additions and 1 deletions
5
Makefile
5
Makefile
|
@ -9,7 +9,10 @@ TARGETS=approximate-pi linked-list mandelbrot threads circular-buffer structs nc
|
|||
EXTRAS=mandelbrot.bmp multibrot.png test-inline-assembly.s tags mtrace-test.trace mtrace-test.txt
|
||||
|
||||
.PHONY: all
|
||||
all: $(TARGETS) $(EXTRAS)
|
||||
all: $(TARGETS)
|
||||
|
||||
.PHONY: really-all
|
||||
really-all: all $(EXTRAS)
|
||||
|
||||
.PHONY: clean
|
||||
clean:
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue