blob: ac27a04d5f99cf3aeb45fadccd5bc863c8d554a5 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
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 "${builddir}/test_system_log"
|