mirror of
https://github.com/Zenithsiz/ftmemsim-valgrind.git
synced 2026-02-07 20:50:56 +00:00
stage2 as one. This means that we're not hard-wiring stage2 in at 0xb0000000, which means our memory layout is a bit more flexible, yay. git-svn-id: svn://svn.valgrind.org/valgrind/trunk@2833
27 lines
696 B
Makefile
27 lines
696 B
Makefile
include $(top_srcdir)/Makefile.all.am
|
|
include $(top_srcdir)/Makefile.core-AM_CPPFLAGS.am
|
|
|
|
## Test repeated in both arms of the if-then-else because older versions of
|
|
## automake don't seem to like having += within an if-then-else.
|
|
if USE_PIE
|
|
AM_CFLAGS = $(WERROR) -Winline -Wall -Wshadow -O -g -fpie
|
|
else
|
|
AM_CFLAGS = $(WERROR) -Winline -Wall -Wshadow -O -g
|
|
endif
|
|
|
|
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
|
|
|
|
## Ignore harmless warnings for these ones
|
|
cp-demangle.o: CFLAGS += -Wno-unused -Wno-shadow
|
|
cplus-dem.o: CFLAGS += -Wno-unused
|
|
|