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
|
ACLOCAL_AMFLAGS = -I m4
AM_CPPFLAGS = -I. -DGEN_TEMPLATES
AM_CXXFLAGS = -Wall
AM_CFLAGS = -Wall
lib_LTLIBRARIES = libclippoly.la
libclippoly_la_SOURCES =
# OBJ
libclippoly_la_SOURCES += nclip.cc poly.cc poly_io.cc posadder.cc \
primitives.cc templates.cc version.c
# LIBOBJ
libclippoly_la_SOURCES += graphadd.cc graphmat.c graphmat++.cc
check_PROGRAMS = clippolytest
clippolytest_SOURCES = clippolytest.cc
clippolytest_LDADD = libclippoly.la
TESTS = test0 test1 test2
dist_man_MANS = graphadd.3 graphmat.3 graphmat++.3
dist_doc_DATA = CLASSES README
cpincludedir = $(includedir)/clippoly
cpinclude_HEADERS = graphadd.h graphmat.h graphmat++.h nclip.h poly.h \
poly_io.h posadder.h primitives.h set.h version.h
EXTRA_DIST = autogen.sh case1 case2 case3 in_file in_file.test \
in_file.wrong lgpl.texinfo out_file.dist t1 t1.out t2 t2.out test0 \
test1 test2
|