blob: 9b952325d5c46c7fd6aab29b51920dbee70d2e16 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
# makefile to compile the Ada Milter API 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
options = wrap_threads
wrap_threads = false
build_GPRs = build_milter_api.gpr
ifeq (${wrap_threads},true)
build_GPRs += build_thread_wrapper.gpr
endif
usage_GPRs = milter_api.gpr
test_milter: build build_test_milter.gpr
${build_GPR}
all: test_milter
|