source: git/findexec/Makefile.am @ 5fdf7a

spielwiese
Last change on this file since 5fdf7a was 5fdf7a, checked in by Max Horn <max@…>, 11 years ago
Replace --no-{rtti,exceptions} by -fno-{rtti,exceptions} This improves compatibility with clang. Moreover, to the best of my knowledge, the --no-* variants are undocumented to start with. At least the GCC manuals for all versions from 2.95.3 till 4.7.2 only list the -fno-* variants, as far as I could tell.
  • Property mode set to 100644
File size: 979 bytes
Line 
1ACLOCAL_AMFLAGS = -I ../m4
2
3if WANT_DEBUG
4  LIB_G=libfindexec_g.la
5else
6  LIB_G=
7endif
8
9libfindexec_LTLIBRARIES = libfindexec.la ${LIB_G}
10libfindexecdir = $(libdir)/
11
12CXXTEMPLFLAGS =-ftrapv
13### -fno-implicit-templates
14
15libfindexec_la_CFLAGS   = -O3 -fomit-frame-pointer ${PIPE}
16libfindexec_g_la_CFLAGS = ${PIPE}
17
18libfindexec_la_CXXFLAGS   = -O3 -fomit-frame-pointer ${PIPE} ${CXXTEMPLFLAGS} -fno-exceptions -fno-rtti
19libfindexec_g_la_CXXFLAGS = -g -Wextra -Wall -pedantic -Wno-long-long ${PIPE} ${CXXTEMPLFLAGS}
20# -fdiagnostics-show-option
21
22AM_CPPFLAGS = -I${top_srcdir} -I${top_builddir}
23
24libfindexec_la_CPPFLAGS   = ${AM_CPPFLAGS} -DHAVE_CONFIG_H -DNDEBUG -DOM_NDEBUG
25libfindexec_g_la_CPPFLAGS = ${AM_CPPFLAGS} -DHAVE_CONFIG_H
26
27SOURCES  = omFindExec.c feResource.cc feFopen.cc
28libfindexec_la_SOURCES   = $(SOURCES)
29libfindexec_g_la_SOURCES = $(SOURCES)
30
31libfindexec_includedir  =$(includedir)/findexec/
32
33libfindexec_include_HEADERS = omFindExec.h feResource.h feFopen.h
34
35
36
Note: See TracBrowser for help on using the repository browser.