compiles on mac; refs #6

This commit is contained in:
Marc Wäckerlin
2010-08-27 13:10:50 +00:00
parent 5c62ed3d53
commit dcc9a84734
5 changed files with 10 additions and 5 deletions

View File

@@ -3,10 +3,15 @@
## 1 2 3 4 5 6 7 8
## 45678901234567890123456789012345678901234567890123456789012345678901234567890
AM_CXXFLAGS += -I ${top_srcdir}/src
AM_CXXFLAGS = -I ${top_srcdir}/src
AM_LDFLAGS = -L${top_builddir}/src
LDADD = -lcppunit
if MAC
AM_LDFLAGS += -L/opt/local/lib
AM_CPPFLAGS += -I/opt/local/include
endif
check_PROGRAMS = sharedpointer_test
TESTS=${check_PROGRAMS}