mirror of
https://github.com/clearlinux/graphene.git
synced 2026-09-08 14:51:32 +00:00
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.
17 lines
255 B
Makefile
17 lines
255 B
Makefile
MAKEFLAGS += --check-symlink-times
|
|
|
|
SYS ?= $(shell gcc -dumpmachine)
|
|
export SYS
|
|
|
|
targets = all debug clean
|
|
ifeq ($(SYS),x86_64-linux-gnu)
|
|
targets += pack
|
|
endif
|
|
|
|
.PHONY: $(targets)
|
|
$(targets): src test
|
|
for d in src test; \
|
|
do \
|
|
make $@ -C $$d; \
|
|
done
|