diff options
author | Björn Persson <bjorn@rombobjörn.se> | 2013-02-13 23:23:53 +0100 |
---|---|---|
committer | Björn Persson <bjorn@rombobjörn.se> | 2013-02-13 23:23:53 +0100 |
commit | 41cf063931a6d818ba66b95283392ac8a6e48022 (patch) | |
tree | aff70df494543ac52eca48f57eb9cc37d852fe6b /Makefile | |
parent | 8d23905093ecf9f9e008c189b51714b5a8c2ca08 (diff) |
Added a convenient and flexible build system.
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..5ae722c --- /dev/null +++ b/Makefile @@ -0,0 +1,18 @@ +# makefile to compile System_Log into a shared library +# Copyright 2013 B. Persson, Bjorn@Rombobeorn.se +# +# This makefile is free software: you can redistribute it and/or modify it +# under the terms of the GNU General Public License version 3, as published +# by the Free Software Foundation. + + +include comfignat.mk + +build_GPRs = build_system_log.gpr +usage_GPRs = system_log.gpr + +test: build build_test_system_log.gpr + ${build_GPR} + +clean:: + rm -f test_system_log |