mirror of
https://git.planet-casio.com/Lephenixnoir/libprof.git
synced 2024-12-26 19:43:41 +01:00
25 lines
526 B
Makefile
25 lines
526 B
Makefile
# giteapc: version=1 depends=Lephenixnoir/gint
|
|
|
|
-include giteapc-config.make
|
|
|
|
configure:
|
|
@ fxsdk build-fx -c
|
|
@ fxsdk build-cg -c
|
|
|
|
build:
|
|
@ fxsdk build-fx
|
|
@ fxsdk build-cg
|
|
|
|
install:
|
|
@ fxsdk build-fx install
|
|
@ fxsdk build-cg install
|
|
|
|
uninstall:
|
|
@ if [ -e build-fx/install_manifest.txt ]; then \
|
|
xargs rm -f < build-fx/install_manifest.txt; \
|
|
fi
|
|
@ if [ -e build-cg/install_manifest.txt ]; then \
|
|
xargs rm -f < build-cg/install_manifest.txt; \
|
|
fi
|
|
|
|
.PHONY: configure build install uninstall
|