FIX: context initialization, __func__ retrieval
[nobug.git] / Makefile.am
blob6b37873de261c12ed91a58513aa99172112e3449
1 # This file is part of the NoBug debugging library.
3 # Copyright (C)
4 #   2007, 2008, 2009,   Christian Thaeter <ct@pipapo.org>
6 # This program is free software; you can redistribute it and/or modify
7 # it under the terms of the GNU General Public License as published by
8 # the Free Software Foundation; either version 2 of the License, or
9 # (at your option) any later version.
11 # This program is distributed in the hope that it will be useful,
12 # but WITHOUT ANY WARRANTY; without even the implied warranty of
13 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14 # GNU General Public License for more details.
16 # You should have received a copy of the GNU General Public License
17 # along with this program; if not, contact Christian Thaeter <ct@pipapo.org>.
19 include_HEADERS                         = src/nobug.h
20 pcdir                                   = $(libdir)/pkgconfig
21 pc_DATA                                 = nobug.pc nobugmt.pc
23 ACLOCAL_AMFLAGS = -I m4
25 AM_CFLAGS = $(CONF_CFLAGS) -D_GNU_SOURCE
27 libnobug_version = 2:0:0
29 CLEANFILES =
30 EXTRA_DIST =
32 ##### single-threading variant
34 lib_LTLIBRARIES                         = libnobug.la
35 libnobug_la_SOURCES                     = src/nobug.c src/nobug_env.c src/nobug_ringbuffer.c src/nobug_resources.c src/mpool.c
36 libnobug_la_CFLAGS                      = $(AM_CFLAGS) @VALGRIND_CFLAGS@
37 libnobug_la_CPPFLAGS                    = -DNOBUG_USE_PTHREAD=0
38 libnobug_la_LDFLAGS                     = -version-info $(libnobug_version)
41 bin_PROGRAMS                            = nobug_rbdump
42 nobug_rbdump_SOURCES                    = src/nobug_rbdump.c
43 nobug_rbdump_LDADD                      = libnobug.la
44 nobug_rbdump_CFLAGS                     = $(AM_CFLAGS) @VALGRIND_CFLAGS@
46 noinst_HEADERS                          = src/llist.h src/mpool.h
48 ##### multi-threading variant
50 if HAVE_THREADING
52 lib_LTLIBRARIES                         += libnobugmt.la
53 libnobugmt_la_SOURCES                   = src/nobug.c src/nobug_env.c src/nobug_ringbuffer.c src/nobug_resources.c src/nobug_thread.c src/mpool.c
54 libnobugmt_la_CFLAGS                    = $(AM_CFLAGS) @PTHREAD_CFLAGS@ @VALGRIND_CFLAGS@
55 libnobugmt_la_LDFLAGS                   = -version-info $(libnobug_version)
57 endif   # HAVE_THREADING
59 ##### Testsuite
61 include tests/Makefile.am
64 ##### maintainer targets
65 CLEANFILES      += nobug_manual.txt
66 EXTRA_DIST      += pipadoc doc/nobug_manual.conf doc/asciidoc.pawk doc/verbatim.pawk
68 manual_ASCIIDOCS = \
69         $(include_HEADERS) \
70         $(libnobugmt_la_SOURCES) \
71         $(nobug_rbdump_SOURCES)
73 nobug_manual.txt: doc/nobug_manual.conf doc/asciidoc.pawk doc/verbatim.pawk $(manual_ASCIIDOCS) $(wildcard $(top_srcdir)/doc/*.txt)
74         @which gawk >/dev/null || ( echo "gawk not installed!"; exit 1; )
75         ( cd $(top_srcdir) ; ./pipadoc doc/nobug_manual.conf doc/asciidoc.pawk doc/verbatim.pawk        \
76                 $(patsubst $(top_srcdir)/%,%,$(wildcard $(top_srcdir)/doc/*.txt))               \
77                 $(manual_ASCIIDOCS) ) >$(top_builddir)/nobug_manual.txt
80 test_manual.txt: doc/asciidoc.pawk tests/test.sh
81         @which gawk >/dev/null || ( echo "gawk not installed!"; exit 1; )
82         ( cd $(top_srcdir); COM='#' ./pipadoc doc/asciidoc.pawk tests/test.sh ) >$(top_builddir)/test_manual.txt
84 .txt.html:
85         asciidoc -a toc $<
87 .txt.pdf:
88         a2x -f pdf $<
90 .txt.ps: .txt
91         a2x -f ps $<
93 doc: nobug_manual.html nobug_manual.pdf
94 # TODO create manpage
96 README: nobug_manual.txt
97         cp nobug_manual.txt $(top_srcdir)/README || true
98         git add $(top_srcdir)/README
100 ChangeLog.new:
101         cd $(top_srcdir);                                                                               \
102         git whatchanged --pretty=format:"%n%ai %h%n%aN <%aE>%n%n%s%n%n%b" latest-release..HEAD |        \
103          sed -e 's/^:.*\.\.\.//' >ChangeLog.new;
106 ChangeLog: ChangeLog.new
107         cd $(top_srcdir);                                       \
108         mv ChangeLog ChangeLog.bak;                             \
109         echo >.newline;                                         \
110         cat ChangeLog.new .newline ChangeLog.bak >ChangeLog;    \
111         rm .newline ChangeLog.new;                              \
112         git add ChangeLog
114 NEWS.new:
115         @cd $(top_srcdir);                                      \
116         admin/get_version.sh >NEWS.new;                         \
117         echo "--------" >>NEWS.new;                             \
118         date "+%d %b %Y" >>NEWS.new;                            \
119         echo >>NEWS.new;                                        \
120         git shortlog latest-release..HEAD >>NEWS.new;           \
121         echo -e "\n EDIT NEWS.new and then hit enter\n";        \
122         read;
124 NEWS: NEWS.new
125         cd $(top_srcdir);                               \
126         mv NEWS NEWS.old;                               \
127         echo >.newline;                                 \
128         cat NEWS.new .newline .newline NEWS.old > NEWS; \
129         rm .newline NEWS.new;                           \
130         git add NEWS;
133 release-tag: NEWS ChangeLog README
134         cd $(top_srcdir);                                                                       \
135         git commit -m "This is release $$(admin/get_version.sh)";                               \
136         git tag -f -s -m "This is release $$(admin/get_version.sh)" $$(admin/get_version.sh);   \
137         git tag -f latest-release;
140 release-2nd: dist release-tag
141         list='$(DIST_ARCHIVES)'; for i in $$list; do \
142                 gpg -s $$i;\
143                 rm $$i;\
144         done
147 versionbump:
148         cd $(top_srcdir); \
149         admin/update_version.sh; \
150         git add configure.ac;
152 release: versionbump
153         $(MAKE) release-2nd