source: git/xalloc/Makefile.am @ 82102f

spielwiese
Last change on this file since 82102f was 82102f, checked in by Oleksandr Motsak <motsak@…>, 12 years ago
xalloc is usable instead of omalloc ADD: xalloc is a standalone (stub) library with configure.ac and Makefile.am ADD: added missing required macros and constants USAGE: just replace omalloc/ with xalloc/ (or sym-link)
  • Property mode set to 100644
File size: 641 bytes
Line 
1ACLOCAL_AMFLAGS = -I ../m4
2
3libomalloc_LTLIBRARIES=libomalloc.la libomalloc_g.la
4libomallocdir = $(libdir)/
5
6libomalloc_includedir=$(includedir)/omalloc
7
8libomalloc_include_HEADERS = omalloc.h
9
10SOURCES = dummy.c
11
12INCLUDES = -I${srcdir}
13
14libomalloc_la_SOURCES  =$(SOURCES)
15libomalloc_g_la_SOURCES=$(SOURCES)
16
17libomalloc_la_CFLAGS            = -O3 ${PIPE}
18libomalloc_g_la_CFLAGS  = -g -Wextra -Wall -pedantic -Wno-long-long ${PIPE}
19
20libomalloc_la_CXXFLAGS  = -O3 ${PIPE}
21libomalloc_g_la_CXXFLAGS= -g -Wextra -Wall -pedantic -Wno-long-long ${PIPE}
22
23libomalloc_la_CPPFLAGS  = -DHAVE_CONFIG_H -DNDEBUG -DOM_NDEBUG
24libomalloc_g_la_CPPFLAGS= -DHAVE_CONFIG_H
25
Note: See TracBrowser for help on using the repository browser.