mirror of
https://github.com/clearlinux/graphene.git
synced 2026-08-28 13:25:43 +00:00
7f19f62f31
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.
16 lines
220 B
Makefile
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
|