mirror of
https://github.com/Zenithsiz/ftmemsim-valgrind.git
synced 2026-02-03 18:13:01 +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
22 lines
445 B
Makefile
22 lines
445 B
Makefile
|
|
SUBDIRS = . docs tests
|
|
|
|
AM_CPPFLAGS = -I$(top_srcdir)/include -DVG_LIBDIR="\"$(libdir)"\"
|
|
AM_CFLAGS = $(WERROR) -Winline -Wall -Wshadow -O -fomit-frame-pointer \
|
|
@PREFERRED_STACK_BOUNDARY@ -g
|
|
|
|
valdir = $(libdir)/valgrind
|
|
|
|
bin_SCRIPTS = cg_annotate
|
|
|
|
EXTRA_DIST = \
|
|
cg_sim_I1.c \
|
|
cg_sim_D1.c \
|
|
cg_sim_L2.c \
|
|
cg_sim_gen.c
|
|
|
|
val_PROGRAMS = vgskin_cachegrind.so
|
|
|
|
vgskin_cachegrind_so_SOURCES = cg_main.c
|
|
vgskin_cachegrind_so_LDFLAGS = -shared
|