mirror of
https://git.planet-casio.com/Lephenixnoir/fxsdk.git
synced 2024-12-28 20:43:37 +01:00
add GiteaPC support
This commit is contained in:
parent
e2ba617405
commit
802ba12e5e
2 changed files with 27 additions and 0 deletions
4
.gitignore
vendored
4
.gitignore
vendored
|
@ -15,3 +15,7 @@ doc/
|
||||||
|
|
||||||
# Python cache
|
# Python cache
|
||||||
__pycache__
|
__pycache__
|
||||||
|
|
||||||
|
# Configuration files for custom builds using GiteaPC
|
||||||
|
/giteapc-config.make
|
||||||
|
/giteapc-config-*.make
|
||||||
|
|
23
giteapc.make
Normal file
23
giteapc.make
Normal file
|
@ -0,0 +1,23 @@
|
||||||
|
# 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
|
Loading…
Reference in a new issue