source: git/xalloc/Makefile.am @ 8e7e6d4

spielwiese
Last change on this file since 8e7e6d4 was fff6150, checked in by Oleksandr Motsak <motsak@…>, 12 years ago
added -Winline compiler option: warn when a function marked inline could not be substituted, and give the reason for the failure NOTE: see also http://gcc.gnu.org/onlinedocs/gcc/Inline.html
  • Property mode set to 100644
File size: 740 bytes
RevLine 
[82102f]1ACLOCAL_AMFLAGS = -I ../m4
2
[2b43ac]3if WANT_DEBUG
4  LIB_G=libomalloc_g.la
5else
6  LIB_G=
7endif
8
[fd201f]9lib_LTLIBRARIES=libomalloc.la ${LIB_G}
10## libomallocdir = $(libdir)/
[82102f]11
12libomalloc_includedir=$(includedir)/omalloc
13
14libomalloc_include_HEADERS = omalloc.h
15
16SOURCES = dummy.c
17
[4bc0ab9]18AM_CPPFLAGS = -I${srcdir}
[82102f]19
20libomalloc_la_SOURCES  =$(SOURCES)
21libomalloc_g_la_SOURCES=$(SOURCES)
22
23libomalloc_la_CFLAGS            = -O3 ${PIPE}
[fff6150]24libomalloc_g_la_CFLAGS  = -g -Wextra -Winline -Wall -pedantic -Wno-long-long ${PIPE}
[82102f]25
26libomalloc_la_CXXFLAGS  = -O3 ${PIPE}
[fff6150]27libomalloc_g_la_CXXFLAGS= -g -Wextra -Winline -Wall -pedantic -Wno-long-long ${PIPE}
[82102f]28
[4bc0ab9]29libomalloc_la_CPPFLAGS  = ${AM_CPPFLAGS} -DHAVE_CONFIG_H -DNDEBUG -DOM_NDEBUG
30libomalloc_g_la_CPPFLAGS= ${AM_CPPFLAGS} -DHAVE_CONFIG_H
[82102f]31
Note: See TracBrowser for help on using the repository browser.