Files
graphene/Makefile

11 lines
172 B
Makefile

SYS ?= $(shell gcc -dumpmachine)
export SYS
targets = all clean format test
.PHONY: $(targets)
$(targets):
$(MAKE) -C Pal $@
$(MAKE) -C LibOS $@
$(MAKE) -C Runtime $@