diff --git a/.gitignore b/.gitignore index 6365fc2..95c2d6f 100644 --- a/.gitignore +++ b/.gitignore @@ -1,3 +1,7 @@ # Build files build/ libprof.a + +# GiteaPC configuration files +giteapc-config-*.make +giteapc-config.make diff --git a/README.md b/README.md index 711e496..6ef7937 100644 --- a/README.md +++ b/README.md @@ -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 diff --git a/giteapc.make b/giteapc.make new file mode 100644 index 0000000..78d8663 --- /dev/null +++ b/giteapc.make @@ -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