mirror of
https://github.com/clearlinux/graphene.git
synced 2026-09-05 21:31:36 +00:00
11 lines
172 B
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 $@
|