source: git/libpolys/misc/Makefile.am @ 1b49ff

spielwiese
Last change on this file since 1b49ff was 53ca3d, checked in by Oleksandr Motsak <motsak@…>, 13 years ago
FIX: separate CC Flags for debug/release lib-versions FIX: config.h should NOT be installed and thus used by public headers FIX: include local "config.h" before including <misc/auxiliary.h>
  • Property mode set to 100644
File size: 901 bytes
Line 
1lib_LIBRARIES=libmisc.a libmisc_g.a
2
3CXXTEMPLFLAGS      = -fno-implicit-templates --no-exceptions
4
5libmisc_a_CFLAGS   = -O3 -fomit-frame-pointer ${PIPE}
6libmisc_g_a_CFLAGS = ${PIPE}
7
8libmisc_a_CXXFLAGS   = -O3 -fomit-frame-pointer --no-rtti ${PIPE} ${CXXTEMPLFLAGS}
9libmisc_g_a_CXXFLAGS = -g -Wextra -Wall -pedantic -Wno-long-long ${PIPE} ${CXXTEMPLFLAGS}
10# -fdiagnostics-show-option
11
12libmisc_a_CPPFLAGS   = -DNDEBUG -DOM_NDEBUG -DHAVE_CONFIG_H
13libmisc_g_a_CPPFLAGS = -DHAVE_CONFIG_H
14
15INCLUDES = -I${top_srcdir}/.. -I${top_srcdir}/../.. -I${top_builddir}/..
16
17SOURCES  = intvec.cc
18libmisc_a_SOURCES   = $(SOURCES)
19libmisc_g_a_SOURCES = $(SOURCES)
20
21libmisc_a_includedir  =$(includedir)/libpolys/misc
22libmisc_g_a_includedir=$(includedir)/libpolys/misc
23
24MISCHEADERS  = auxiliary.h mylimits.h options.h intvec.h
25libmisc_a_include_HEADERS   = $(MISCHEADERS)
26libmisc_g_a_include_HEADERS = $(MISCHEADERS)
27
28
29
Note: See TracBrowser for help on using the repository browser.