Files
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

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