File: Makefile.am

package info (click to toggle)
topcom 1.1.2%2Bds-1
  • links: PTS, VCS
  • area: main
  • in suites: bookworm
  • size: 31,784 kB
  • sloc: cpp: 37,616; sh: 4,262; makefile: 497; ansic: 49
file content (28 lines) | stat: -rw-r--r-- 699 bytes parent folder | download | duplicates (2)
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
bin_PROGRAMS = topcom-checkregularity

topcom_checkregularity_SOURCES = checkregularity.cc

LDADD           = ../lib-src/libTOPCOM.la \
                  ../lib-src-reg/libCHECKREG.la \
                  -lcddgmp
if USE_QSOPTEX
LDADD          += -lqsopt_ex
endif

if USE_SOPLEX
LDADD          += ../external/lib/libsoplex.a
endif
if USE_LOCAL_GMP
LDADD          += ../external/lib/libgmpxx.a \
                  ../external/lib/libgmp.a
else
LIBS           += -lgmpxx -lgmp
endif

AM_CPPFLAGS    += -I../lib-src
AM_CPPFLAGS    += -I../lib-src-reg
AM_CPPFLAGS    += -I../wrap-gmp-gmpxx
AM_CPPFLAGS    += -I/usr/include/cddlib
AM_CPPFLAGS    += -I$(includedir)

AM_CPPFLAGS    += -ftemplate-depth=100