summaryrefslogtreecommitdiff
blob: e8546aa846dc6e40dbdb0ebb952d07094ed63390 (plain)
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
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
 lib-src-reg/Makefile.am    |    8 +++-----
 lib-src/Makefile.am        |    8 +++-----
 src-reg/Makefile.am        |   12 +++++-------
 src/Makefile.am            |   12 +++++-------
 wrap-gmp-gmpxx/Makefile.am |    2 +-
 5 files changed, 17 insertions(+), 25 deletions(-)

diff --git a/lib-src-reg/Makefile.am b/lib-src-reg/Makefile.am
index 67c1dc9..202d6fa 100644
--- a/lib-src-reg/Makefile.am
+++ b/lib-src-reg/Makefile.am
@@ -10,11 +10,9 @@ SPXinterface.hh \
 RegularityCheck.hh \
 LPinterface.hh
 
-INCLUDES        = -I../lib-src 
-INCLUDES       += -I../wrap-gmp-gmpxx
-INCLUDES       += -I../external/include
+INCLUDES        = -I$(top_srcdir)/lib-src 
+INCLUDES       += -I$(top_srcdir)/wrap-gmp-gmpxx
+INCLUDES       += -I$(top_srcdir)/external/include
 INCLUDES       += -I$(includedir)
 
 AM_CPPFLAGS     = -DVERBOSE -DGMPRATIONAL -ftemplate-depth-30
-
-AM_CXXFLAGS     = -O2
diff --git a/lib-src/Makefile.am b/lib-src/Makefile.am
index defed87..c94109c 100644
--- a/lib-src/Makefile.am
+++ b/lib-src/Makefile.am
@@ -88,11 +88,9 @@ VertexFacetTable.hh \
 VertexFacetTableArray.hh \
 VirtualChiro.hh
 
-INCLUDES        = -I../lib-src-reg
-INCLUDES       += -I../wrap-gmp-gmpxx
-INCLUDES       += -I../external/include
+INCLUDES        = -I$(top_srcdir)/lib-src-reg
+INCLUDES       += -I$(top_srcdir)/wrap-gmp-gmpxx
+INCLUDES       += -I$(top_srcdir)/external/include
 INCLUDES       += -I$(includedir)
 
 AM_CPPFLAGS     = -DVERBOSE -DGMPRATIONAL -ftemplate-depth-35
-
-AM_CXXFLAGS     = -O2 -g
diff --git a/src-reg/Makefile.am b/src-reg/Makefile.am
index b0219a5..e9b00bc 100644
--- a/src-reg/Makefile.am
+++ b/src-reg/Makefile.am
@@ -2,15 +2,13 @@ bin_PROGRAMS = checkregularity
 
 checkregularity_SOURCES = checkregularity.cc
 
-LDADD           = ../lib-src-reg/libCHECKREG.a \
-                  ../lib-src/libTOPCOM.a
+LDADD           = $(top_builddir)/lib-src-reg/libCHECKREG.a \
+                  $(top_builddir)/lib-src/libTOPCOM.a
 
-INCLUDES        = -I../lib-src
-INCLUDES       += -I../lib-src-reg
-INCLUDES       += -I../wrap-gmp-gmpxx
+INCLUDES        = -I$(top_srcdir)/lib-src
+INCLUDES       += -I$(top_srcdir)/lib-src-reg
+INCLUDES       += -I$(top_srcdir)/wrap-gmp-gmpxx
 INCLUDES       += -I$(includedir)
 
 
 AM_CPPFLAGS     = -DVERBOSE -DGMPRATIONAL -ftemplate-depth-30
-
-AM_CXXFLAGS     = -O2
diff --git a/src/Makefile.am b/src/Makefile.am
index 5ba9b22..4c59202 100644
--- a/src/Makefile.am
+++ b/src/Makefile.am
@@ -85,14 +85,12 @@ santos_triang_SOURCES              = santos_triang.cc
 santos_dim4_triang_SOURCES         = santos_dim4_triang.cc
 santos_22_triang_SOURCES           = santos_22_triang.cc
 
-LDADD           = ../lib-src/libTOPCOM.a \
-                  ../lib-src-reg/libCHECKREG.a
+LDADD           = $(top_builddir)/lib-src/libTOPCOM.a \
+                  $(top_builddir)/lib-src-reg/libCHECKREG.a
 
-INCLUDES        = -I../lib-src
-INCLUDES       += -I../lib-src-reg
-INCLUDES       += -I../wrap-gmp-gmpxx
+INCLUDES        = -I$(top_srcdir)/lib-src
+INCLUDES       += -I$(top_srcdir)/lib-src-reg
+INCLUDES       += -I$(top_srcdir)/wrap-gmp-gmpxx
 INCLUDES       += -I$(includedir)
 
 AM_CPPFLAGS     = -DVERBOSE -DGMPRATIONAL -ftemplate-depth-30
-
-AM_CXXFLAGS     = -O2
diff --git a/wrap-gmp-gmpxx/Makefile.am b/wrap-gmp-gmpxx/Makefile.am
index 383e003..d93a637 100644
--- a/wrap-gmp-gmpxx/Makefile.am
+++ b/wrap-gmp-gmpxx/Makefile.am
@@ -2,5 +2,5 @@ include_HEADERS = \
 Integer.h \
 Rational.h
 
-INCLUDES        = -I../external/include
+INCLUDES        = -I$(top_srcdir)/external/include
 INCLUDES       += -I$(includedir)