mirror of
https://github.com/Zenithsiz/ftmemsim-valgrind.git
synced 2026-02-08 13:01:17 +00:00
which list all the arches/OSes/platforms supported. These are used by several newly added DIST_SUBDIRS automake commands, which specify that although when you are building you only want to build for the current arch/OS/platform, when you do 'make dist' you want every arch/OS/platform to get included. git-svn-id: svn://svn.valgrind.org/valgrind/trunk@3127
21 lines
486 B
Makefile
21 lines
486 B
Makefile
SUBDIRS = ${VG_ARCH} .
|
|
DIST_SUBDIRS = ${VG_ARCH_ALL} .
|
|
|
|
noinst_SCRIPTS = filter_stderr filter_cachesim_discards
|
|
|
|
EXTRA_DIST = $(noinst_SCRIPTS) \
|
|
chdir.vgtest chdir.stderr.exp \
|
|
dlclose.vgtest dlclose.stderr.exp dlclose.stdout.exp
|
|
|
|
check_PROGRAMS = \
|
|
chdir dlclose myprint.so
|
|
|
|
AM_CFLAGS = $(WERROR) -Winline -Wall -Wshadow -g
|
|
|
|
# C ones
|
|
chdir_SOURCES = chdir.c
|
|
dlclose_SOURCES = dlclose.c
|
|
dlclose_LDADD = -ldl
|
|
myprint_so_SOURCES = myprint.c
|
|
myprint_so_LDFLAGS = -shared
|