3 ## Copyright (C) 2008 Daniel Hokka Zakrisson
5 ## This program is free software; you can redistribute it and/or
6 ## modify it under the terms of the GNU General Public License
7 ## as published by the Free Software Foundation; either version 2
8 ## of the License, or (at your option) any later version.
10 ## This program is distributed in the hope that it will be useful,
11 ## but WITHOUT ANY WARRANTY; without even the implied warranty of
12 ## MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 ## GNU General Public License for more details.
15 ## You should have received a copy of the GNU General Public License
16 ## along with this program; if not, write to the Free Software
17 ## Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
20 pyexec_LTLIBRARIES += python/_libvserver.la
21 python__libvserver_la_SOURCES = python/_libvserver.c
22 python__libvserver_la_CFLAGS = $(AM_CFLAGS) $(PYTHON_CFLAGS) \
23 -I$(top_builddir)/python
24 python__libvserver_la_LDFLAGS = -module -avoid-version $(PYTHON_LDFLAGS)
25 python__libvserver_la_LIBADD = $(LIBVSERVER_GLIBC)
27 EXTRA_DIST += python/ctags-constants.awk
29 # FIXME: Dude, this is ugly.
30 python/_libvserver.c: $(top_builddir)/python/_libvserver-constants.c
31 $(top_builddir)/python/_libvserver-constants.c: lib/vserver.h \
32 $(top_srcdir)/python/ctags-constants.awk
33 $(CTAGS) -x $(top_srcdir)/lib/vserver.h | \
34 $(AWK) -f $(top_srcdir)/python/ctags-constants.awk \
35 > $(top_builddir)/python/_libvserver-constants.c