mirror of
https://github.com/clearlinux/graphene.git
synced 2026-09-08 14:51:32 +00:00
15 lines
234 B
Makefile
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
|