Changeset 4a4e29 in git
- Timestamp:
- Aug 31, 2011, 12:49:29 AM (12 years ago)
- Branches:
- (u'spielwiese', '0d6b7fcd9813a1ca1ed4220cfa2b104b97a0a003')
- Children:
- 3449431cc9132aca0440d8ba73f57277d92384fe
- Parents:
- a40080cae8b3860098d611dfa15761e633e8fd1b
- git-author:
- Oleksandr Motsak <motsak@mathematik.uni-kl.de>2011-08-31 00:49:29+02:00
- git-committer:
- Mohamed Barakat <mohamed.barakat@rwth-aachen.de>2011-11-09 16:12:30+01:00
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
omalloc/Makefile.am
ra40080 r4a4e29 1 AM_LDFLAGS = -L${top_builddir}/omalloc -L${top_builddir}/../omalloc 2 1 3 lib_LIBRARIES=libomalloc.a libomalloc_g.a 2 4 … … 46 48 omTables_CPPFLAGS = -DOM_GENERATE_INC 47 49 50 #################################################### 51 ## Test program 52 ## 53 TESTS = omtTest-g omtTest-m omtTest-r 54 check_PROGRAMS = $(TESTS) 55 56 OMTTESTSSOURCES = omtTestReal.c omtTestDebug.c omtTestKeep.c omtTestError.c omtTest.c 57 58 omtTest_g: libomalloc_g.a 59 60 omtTest_g_SOURCES = $(OMTTESTSSOURCES) 61 omtTest_g_CFLAGS = -g -Wextra -Wall -pedantic -Wno-long-long 62 omtTest_g_LDADD = -lomalloc_g 63 64 omtTest_m: libomalloc_g.a 65 66 omtTest_m_CPPFLAGS = -DOM_TEST_MALLOC 67 omtTest_m_SOURCES = $(OMTTESTSSOURCES) 68 omtTest_m_LDADD = -lomalloc_g 69 70 omtTest_r: libomalloc.a 71 72 omtTest_r_SOURCES = $(OMTTESTSSOURCES) 73 omtTest_r_CPPFLAGS = -DOM_NDEBUG 74 omtTest_r_CFLAGS = -O3 75 omtTest_r_LDADD = -lomalloc 76
Note: See TracChangeset
for help on using the changeset viewer.