Files
graphene/Makefile
T
Chia-Che Tsai 7f19f62f31 beta version 0.2
Plenty of bugfixes for Linux kernel later than 3.5 and Ubuntu later than 10.10.
More organized code to improve portability.
Regression tests for Pal to test completeness of implementation.
2015-05-20 14:15:52 -04:00

16 lines
220 B
Makefile

SYS ?= $(shell gcc -dumpmachine)
export SYS
targets = all debug clean install
ifeq ($(SYS),x86_64-linux-gnu)
targets += pack
endif
.PHONY: $(targets)
$(targets):
for d in Pal LibOS; \
do \
make -C $$d $@; \
done