Files
graphene/Makefile
T
Chia-Che Tsai b5586bbfc6 release v0.3
- Bugfixes in PAL and SHIM
- Improvement of migration scheme in SHIM, which largely speed up
  forking
- Upgrade glibc to 2.19
- FreeBSD port
- Support OpenJDK, python and R
2015-11-30 08:38:50 -05:00

16 lines
223 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