add GiteaPC support

This commit is contained in:
Lephe 2021-01-16 18:29:32 +01:00
parent 5dbbe76f01
commit 15ec46d11c
Signed by untrusted user: Lephenixnoir
GPG Key ID: 1BBA026E13FC0495
2 changed files with 22 additions and 0 deletions

4
.gitignore vendored
View File

@ -7,3 +7,7 @@ build*/**
# Lots of unordered project notes
notes/**
# GiteaPC config files
giteapc-config.make
giteapc-config-*.make

18
giteapc.make Normal file
View File

@ -0,0 +1,18 @@
# giteapc: version=1 depends=Lephenixnoir/sh-elf-gcc,Lephenixnoir/fxsdk
-include giteapc-config.make
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