Files
ftmemsim-valgrind/coregrind/m_demangle/Makefile.am
Tom Hughes ccae44d317 Get rid of all the duplicated settings of AM_CFLAGS in the makefiles
for the various core modules and use a single global setting so that
the flags are actually consistent everywhere.

Also get rid of most the USE_PIE blocks in the makefiles by having
configure pass expand a variable in the new global AM_CFLAGS to one
of "-fpie" or "" depending on whether PIE is in use.


git-svn-id: svn://svn.valgrind.org/valgrind/trunk@3760
2005-05-17 16:11:40 +00:00

23 lines
445 B
Makefile

include $(top_srcdir)/Makefile.all.am
include $(top_srcdir)/Makefile.core-AM_CPPFLAGS.am
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 \
demangle.c \
dyn-string.c \
safe-ctype.c
## Ignore harmless warnings for these ones
cp-demangle.o: CFLAGS += -Wno-unused -Wno-shadow
cplus-dem.o: CFLAGS += -Wno-unused