mirror of
https://github.com/clearlinux/graphene.git
synced 2026-09-08 06:41:58 +00:00
- 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
16 lines
223 B
Makefile
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
|