mirror of
https://github.com/joyieldInc/predixy.git
synced 2025-12-24 22:46:41 +08:00
20 lines
274 B
Makefile
20 lines
274 B
Makefile
|
|
.PHONY : default debug clean
|
|
|
|
make = make
|
|
plt = $(shell uname)
|
|
ifeq ($(plt), FreeBSD)
|
|
make = gmake
|
|
else ifeq ($(plt), OpenBSD)
|
|
make = gmake
|
|
endif
|
|
|
|
default:
|
|
@$(make) -C src -f Makefile
|
|
|
|
debug:
|
|
@$(make) -C src -f Makefile debug
|
|
|
|
clean:
|
|
@$(make) -C src -f Makefile clean
|