mirror of
https://github.com/clearlinux/graphene.git
synced 2026-09-05 13:21:37 +00:00
15 lines
256 B
Makefile
15 lines
256 B
Makefile
SYS ?= $(shell gcc -dumpmachine)
|
|
export SYS
|
|
|
|
targets = all clean format
|
|
|
|
.PHONY: $(targets)
|
|
$(targets):
|
|
$(MAKE) -C Pal $@
|
|
$(MAKE) -C LibOS $@
|
|
$(MAKE) -C Runtime $@
|
|
|
|
.PHONY: install
|
|
install:
|
|
@echo "\"make install\" is deprecated. use \"make\" instead."
|