]> arthur.barton.de Git - ngircd-alex.git/blob - src/portab/Makefile.ng
8712bc5ed7afefc71ae2b09f74367d5cb19bb504
[ngircd-alex.git] / src / portab / Makefile.ng
1 #
2 # ngIRCd -- The Next Generation IRC Daemon
3 # Copyright (c)2001-2014 Alexander Barton (alex@barton.de) and Contributors
4 #
5 # This program is free software; you can redistribute it and/or modify
6 # it under the terms of the GNU General Public License as published by
7 # the Free Software Foundation; either version 2 of the License, or
8 # (at your option) any later version.
9 # Please read the file COPYING, README and AUTHORS for more information.
10 #
11
12 __ng_Makefile_am_template__
13
14 EXTRA_DIST = Makefile.ng
15
16 noinst_LIBRARIES = libngportab.a
17
18 libngportab_a_SOURCES = strdup.c strndup.c strlcpy.c strtok_r.c vsnprintf.c waitpid.c
19
20 check_PROGRAMS = portabtest
21
22 portabtest_SOURCES = portabtest.c
23
24 portabtest_LDFLAGS = -L.
25
26 portabtest_LDADD = -lngportab
27
28 noinst_HEADERS = portab.h splint.h
29
30 maintainer-clean-local:
31         rm -f Makefile Makefile.in Makefile.am
32
33 TESTS = portabtest
34
35 # -eof-