Files
graphene/tests/benchmarks/Makefile
2020-11-05 05:59:04 -08:00

13 lines
169 B
Makefile

BENCHMARKS = \
helloworld \
write_pages
.PHONY: all
all: $(BENCHMARKS)
$(MAKE) -C http-root $@
.PHONY: clean
clean:
$(MAKE) -C http-root $@
$(RM) $(BENCHMARKS)