add build support for incoming fxSDK 2

Adds an fxsdk.make file that describes rules for default builds of the
library. This is compatible with custom builds (by disabling the
configure step in fxSDK 2) and mostly useful as a fast installer.
This commit is contained in:
Lephe 2020-12-30 18:43:47 +01:00
parent 7a68070bac
commit a28aa9a20a
Signed by untrusted user: Lephenixnoir
GPG Key ID: 1BBA026E13FC0495
1 changed files with 16 additions and 0 deletions

16
fxsdk.make Normal file
View File

@ -0,0 +1,16 @@
# fxsdk: version=1
configure:
mkdir -p build-fx && cd build-fx && ../configure --target=fx9860g
mkdir -p build-cg && cd build-cg && ../configure --target=fxcg50
build:
make all
install:
make install
uninstall:
make uninstall
.PHONY: configure build install uninstall