mirror of
https://git.planet-casio.com/Lephenixnoir/libprof.git
synced 2024-12-26 11:33:41 +01:00
add support for quick build with GiteaPC
This commit is contained in:
parent
a15c193ab7
commit
05e6463139
3 changed files with 29 additions and 0 deletions
4
.gitignore
vendored
4
.gitignore
vendored
|
@ -1,3 +1,7 @@
|
|||
# Build files
|
||||
build/
|
||||
libprof.a
|
||||
|
||||
# GiteaPC configuration files
|
||||
giteapc-config-*.make
|
||||
giteapc-config.make
|
||||
|
|
|
@ -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
|
||||
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
|
||||
|
||||
libprof is built and installed only once for both fx-9860G and fx-CG 50. The
|
||||
|
|
17
giteapc.make
Normal file
17
giteapc.make
Normal 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
|
Loading…
Reference in a new issue