File: Makefile.am

package info (click to toggle)
afflib 3.5.12-2
  • links: PTS, VCS
  • area: main
  • in suites: squeeze
  • size: 4,168 kB
  • ctags: 4,723
  • sloc: cpp: 21,800; ansic: 14,696; sh: 9,697; makefile: 531; python: 95
file content (13 lines) | stat: -rw-r--r-- 360 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
EXTRA_DIST = PKG-INFO README pyaff.c setup.py

if HAVE_PYTHON
AM_CFLAGS		= -I$(top_srcdir)/lib -include affconfig.h

# This is for the pyaff python module
pyexec_LTLIBRARIES 	= pyaff.la

pyaff_la_SOURCES	= pyaff.c
pyaff_la_LIBADD		= ../lib/libafflib.la
pyaff_la_CPPFLAGS 	= $(PYTHON_CPPFLAGS)
pyaff_la_LDFLAGS 	= -module -avoid-version $(PYTHON_LDFLAGS)
endif