Files
graphene/LibOS/shim/Makefile
T

15 lines
234 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
make $@ -C src
make $@ -C test