Changeset 6d5efe5 in git
- Timestamp:
- Nov 16, 2010, 2:37:34 PM (13 years ago)
- Branches:
- (u'spielwiese', '0d6b7fcd9813a1ca1ed4220cfa2b104b97a0a003')
- Children:
- 1de854918bc7e6aa477baf65ee1f949fdfbdfb2c
- Parents:
- a529f28a0209317330d6fbb47afc74366e2cee70
- git-author:
- Mohamed Barakat <mohamed.barakat@rwth-aachen.de>2010-11-16 14:37:34+01:00
- git-committer:
- Mohamed Barakat <mohamed.barakat@rwth-aachen.de>2011-11-09 11:55:39+01:00
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
reporter/Makefile.in
ra529f28 r6d5efe5 10 10 ## various paths 11 11 ## 12 srcdir = . 12 top_srcdir = @top_srcdir@ 13 13 prefix = @prefix@ 14 14 exec_prefix = @exec_prefix@ 15 15 libdir = @libdir@ 16 16 # includes are taken from here 17 includedir = @includedir@ 17 includedir = @includedir@/reporter 18 18 19 19 ## … … 35 35 CXXFLAGS = -O3 -w -fomit-frame-pointer --no-rtti ${PIPE} 36 36 CXXTEMPLFLAGS = -fno-implicit-templates --no-exceptions 37 CPPFLAGS = -I${ srcdir} -I${includedir} -I${prefix}/include/singular37 CPPFLAGS = -I${top_srcdir}/.. 38 38 DEFS = -DNDEBUG -DOM_NDEBUG -Dix86_Linux -DHAVE_CONFIG_H 39 39 … … 64 64 ${CC} ${CFLAGS} ${CPPFLAGS} ${DEFS} -c $< 65 65 66 reporter.a: ${OBJS}67 -rm -f reporter.a66 libreporter.a: ${OBJS} 67 -rm -f libreporter.a 68 68 ar cr $@ $^ 69 69 70 all: reporter.a70 all: libreporter.a 71 71 72 72 install: all 73 73 ${MKINSTALLDIRS} ${includedir} 74 74 ${MKINSTALLDIRS} ${libdir} 75 ${INSTALL_DATA} reporter.a ${libdir}/libreporter.a75 ${INSTALL_DATA} libreporter.a ${libdir}/libreporter.a 76 76 ${INSTALL_DATA} reporter.h ${includedir}/reporter.h 77 77
Note: See TracChangeset
for help on using the changeset viewer.