mirror of
https://github.com/Zenithsiz/ftmemsim-valgrind.git
synced 2026-02-05 11:10:21 +00:00
- changed deprecated INCLUDES variable to AM_CPPFLAGS - moved the -DVG_LIBDIR definition from AM_CFLAGS into AM_CPPFLAGS - generally neatened them up a bit -- removed old commented out stuff, fixed a couple of other minor things Everything works for me, hopefully it won't break things for anyone else... git-svn-id: svn://svn.valgrind.org/valgrind/trunk@1680
19 lines
428 B
Makefile
19 lines
428 B
Makefile
|
|
AM_CPPFLAGS = -I$(top_srcdir)/coregrind -I$(top_srcdir)/include
|
|
AM_CFLAGS = $(WERROR) -Winline -Wall -Wshadow -O -fomit-frame-pointer -g
|
|
|
|
noinst_HEADERS = \
|
|
ansidecl.h \
|
|
dyn-string.h \
|
|
demangle.h \
|
|
safe-ctype.h
|
|
|
|
noinst_LIBRARIES = libdemangle.a
|
|
|
|
libdemangle_a_SOURCES = \
|
|
cp-demangle.c cplus-dem.c dyn-string.c safe-ctype.c
|
|
|
|
cp-demangle.o: CFLAGS += -Wno-unused -Wno-shadow
|
|
cplus-dem.o: CFLAGS += -Wno-unused
|
|
|