add support for quick build with GiteaPC

This commit is contained in:
Lephenixnoir 2021-01-25 15:58:52 +01:00
parent a15c193ab7
commit 05e6463139
No known key found for this signature in database
GPG key ID: 1BBA026E13FC0495
3 changed files with 29 additions and 0 deletions

4
.gitignore vendored
View file

@ -1,3 +1,7 @@
# Build files # Build files
build/ build/
libprof.a libprof.a
# GiteaPC configuration files
giteapc-config-*.make
giteapc-config.make

View file

@ -8,6 +8,14 @@ libprof's measurements are accurate down to the microsecond-level thanks to
precise hardware timers, so it can also be used to time even small portions of precise hardware timers, so it can also be used to time even small portions of
code. code.
## Installing with GiteaPC
libprof can be built and installed with [GiteaPC](https://gitea.planet-casio.com/Lephenixnoir/GiteaPC), an automation tool for the fxSDK.
```
% giteapc install Lephenixnoir/libprof
```
## Building ## Building
libprof is built and installed only once for both fx-9860G and fx-CG 50. The libprof is built and installed only once for both fx-9860G and fx-CG 50. The

17
giteapc.make Normal file
View file

@ -0,0 +1,17 @@
# giteapc: version=1 depends=Lephenixnoir/gint
-include giteapc-config.make
configure:
@ true
build:
@ make
install:
@ make install
uninstall:
@ make uninstall
.PHONY: configure build install uninstall