mirror of
https://git.planet-casio.com/Lephenixnoir/fxsdk.git
synced 2024-12-28 04:23:37 +01:00
24 lines
405 B
Text
24 lines
405 B
Text
|
# giteapc: version=1
|
||
|
|
||
|
# Parameters for custom configurations:
|
||
|
# PREFIX Install prefix
|
||
|
# FXSDK_CONFIGURE Configure options (see ./configure --help)
|
||
|
|
||
|
PREFIX ?= $(GITEAPC_PREFIX)
|
||
|
|
||
|
-include giteapc-config.make
|
||
|
|
||
|
configure:
|
||
|
@ ./configure --prefix=$(PREFIX) $(FXSDK_CONFIGURE)
|
||
|
|
||
|
build:
|
||
|
@ make all
|
||
|
|
||
|
install:
|
||
|
@ make install
|
||
|
|
||
|
uninstall:
|
||
|
@ make uninstall
|
||
|
|
||
|
.PHONY: configure build install uninstall
|