1 2 3 4 5 6 7 8 9 10 11 12 | all: TestAlloc.class test-alloc TestAlloc.class: test-alloc.java javac $< test-alloc: test-alloc.cpp g++ -O4 $< -o $@ .PHONY: clean clean: rm -f TestAlloc.class test-alloc test-alloc.scm~ |
Click here to download Makefile
.
1 2 3 4 5 6 7 8 9 10 11 12 | all: TestAlloc.class test-alloc TestAlloc.class: test-alloc.java javac $< test-alloc: test-alloc.cpp g++ -O4 $< -o $@ .PHONY: clean clean: rm -f TestAlloc.class test-alloc test-alloc.scm~ |