Candidate_v1.7.0
stable
|
Last change
on this file since 1ca493a was 2edf77, checked in by Frederik Heber <heber@…>, 10 years ago |
|
DISTFIX: Added AdjacencyMatcher and TriangleMatcher noinst targets.
- distcheck failed on install-check on them.
- adjacencymatcher and trianglematcher don't ust AUTOTEST_PATH but topdir.
|
-
Property mode
set to
100644
|
|
File size:
771 bytes
|
| Line | |
|---|
| 1 | # PLEASE adhere to the alphabetical ordering in this Makefile!
|
|---|
| 2 | # Also indentation by a single tab
|
|---|
| 3 |
|
|---|
| 4 | MOSTLYCLEANFILES =
|
|---|
| 5 | lib_LTLIBRARIES =
|
|---|
| 6 | noinst_LTLIBRARIES =
|
|---|
| 7 | pyexec_LTLIBRARIES =
|
|---|
| 8 | BUILT_SOURCES =
|
|---|
| 9 | noinst_PROGRAMS =
|
|---|
| 10 | bin_PROGRAMS =
|
|---|
| 11 | check_PROGRAMS =
|
|---|
| 12 | EXTRA_DIST =
|
|---|
| 13 |
|
|---|
| 14 | AM_LDFLAGS = -ldl ${BOOST_LDFLAGS} ${CodePatterns_LDFLAGS}
|
|---|
| 15 | AM_CPPFLAGS = \
|
|---|
| 16 | ${BOOST_CPPFLAGS} \
|
|---|
| 17 | ${CodePatterns_CFLAGS}
|
|---|
| 18 |
|
|---|
| 19 | check_PROGRAMS += \
|
|---|
| 20 | trianglematcher
|
|---|
| 21 |
|
|---|
| 22 | noinst_PROGRAMS += \
|
|---|
| 23 | trianglematcher
|
|---|
| 24 |
|
|---|
| 25 | trianglematcher_SOURCES = \
|
|---|
| 26 | Triangle.hpp \
|
|---|
| 27 | types.hpp \
|
|---|
| 28 | TriangleMatcher.cpp
|
|---|
| 29 | trianglematcher_CPPFLAGS = \
|
|---|
| 30 | $(AM_CPPFLAGS) \
|
|---|
| 31 | -std=c++0x
|
|---|
| 32 | trianglematcher_LDFLAGS = \
|
|---|
| 33 | $(AM_LDFLAGS) \
|
|---|
| 34 | $(BOOST_FILESYSTEM_LDFLAGS) \
|
|---|
| 35 | $(BOOST_SYSTEM_LDFLAGS)
|
|---|
| 36 | trianglematcher_LDADD = \
|
|---|
| 37 | $(BOOST_FILESYSTEM_LIBS) \
|
|---|
| 38 | $(BOOST_SYSTEM_LIBS)
|
|---|
Note:
See
TracBrowser
for help on using the repository browser.