mirror of
https://github.com/clearlinux/graphene.git
synced 2026-08-25 00:25:49 +00:00
13 lines
169 B
Makefile
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)
|