1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72
|
ACLOCAL_AMFLAGS = -I m4
AUTOMAKE_OPTIONS = \
dist-xz \
dist-bzip2 \
dist-zip
AM_DISTCHECK_CONFIGURE_FLAGS ?= \
--disable-maintainer-mode \
--enable-extended-tests
## Library versioning (C:R:A == current:revision:age)
## 0.73 2:0:0
LIBBLISS_LT_VERSION = 2:0:0
SUBDIRS = include .
AM_CFLAGS = -g -pedantic -Wall -O3
pkginclude_HEADERS = \
bignum.hh \
kqueue.hh \
kstack.hh \
defs.hh \
graph.hh \
partition.hh \
orbit.hh \
uintseqhash.hh \
heap.hh \
timer.hh \
utils.hh \
bliss_C.h
lib_LTLIBRARIES = libbliss.la
bin_PROGRAMS = bliss
libbliss_la_SOURCES = \
defs.cc \
graph.cc \
partition.cc \
orbit.cc \
uintseqhash.cc \
heap.cc \
timer.cc \
utils.cc \
bliss_C.cc
libbliss_la_CXXFLAGS = \
-D BLISS_USE_GMP \
-I $(top_builddir)/include \
$(GMP_CFLAGS)
libbliss_la_CFLAGS = \
$(libbliss_la_CXXFLAGS)
libbliss_la_LDFLAGS = \
-version-info $(LIBBLISS_LT_VERSION)
libbliss_la_LIBADD = \
$(GMP_LIBS)
bliss_SOURCES = \
bliss.cc
bliss_CXXFLAGS = \
-DBLISS_COMPILED_DATE="\"Debian $(DEB_PKG_VERSION)\"" \
$(libbliss_la_CXXFLAGS)
bliss_LDADD = \
$(top_builddir)/libbliss.la \
$(GMP_LIBS)
|