mirror of
https://github.com/Zenithsiz/ftmemsim-valgrind.git
synced 2026-02-09 13:18:15 +00:00
78 lines
2.9 KiB
Makefile
78 lines
2.9 KiB
Makefile
## Process this file with automake to produce Makefile.in
|
|
|
|
##---------------------------------------------------------------------------
|
|
## These ones all work fine without producing errors in any skin.
|
|
##---------------------------------------------------------------------------
|
|
|
|
noinst_SCRIPTS = filter_stderr
|
|
|
|
EXTRA_DIST = \
|
|
$(noinst_SCRIPTS) \
|
|
bitfield1.stderr.exp bitfield1.stderr.exp.hd bitfield1.vgtest \
|
|
bt_everything.stderr.exp bt_everything.stderr.exp.hd \
|
|
bt_everything.stdout.exp bt_everything.vgtest \
|
|
bt_literal.stderr.exp bt_literal.stderr.exp.hd bt_literal.stdout.exp \
|
|
bt_literal.vgtest \
|
|
coolo_sigaction.stderr.exp coolo_sigaction.stderr.exp.hd \
|
|
coolo_sigaction.stdout.exp coolo_sigaction.vgtest \
|
|
coolo_strlen.stderr.exp coolo_strlen.stderr.exp.hd coolo_strlen.vgtest \
|
|
cpuid.stderr.exp cpuid.stderr.exp.hd cpuid.stdout.exp cpuid.vgtest \
|
|
dastest.stderr.exp dastest.stderr.exp.hd dastest.stdout.exp \
|
|
dastest.vgtest \
|
|
floored.stderr.exp floored.stderr.exp.hd floored.stdout.exp \
|
|
floored.vgtest \
|
|
fork.stderr.exp fork.stderr.exp.hd fork.stdout.exp fork.vgtest \
|
|
fucomip.stderr.exp fucomip.stderr.exp.hd fucomip.vgtest \
|
|
gxx304.stderr.exp gxx304.stderr.exp.hd gxx304.vgtest \
|
|
munmap_exe.stderr.exp munmap_exe.stderr.exp.hd munmap_exe.vgtest \
|
|
pth_blockedsig.stderr.exp pth_blockedsig.stderr.exp.hd \
|
|
pth_blockedsig.stdout.exp pth_blockedsig.vgtest \
|
|
rcl_assert.stderr.exp rcl_assert.stderr.exp.hd rcl_assert.vgtest \
|
|
rcrl.stderr.exp rcrl.stderr.exp.hd rcrl.stdout.exp rcrl.vgtest \
|
|
readline1.stderr.exp readline1.stderr.exp.hd readline1.stdout.exp \
|
|
readline1.vgtest \
|
|
sha1_test.stderr.exp sha1_test.stderr.exp.hd sha1_test.vgtest \
|
|
shortpush.stderr.exp shortpush.stderr.exp.hd shortpush.vgtest \
|
|
shorts.stderr.exp shorts.stderr.exp.hd shorts.vgtest \
|
|
smc1.stderr.exp smc1.stderr.exp.hd smc1.stdout.exp smc1.vgtest
|
|
|
|
noinst_PROGRAMS = \
|
|
bitfield1 bt_everything bt_literal coolo_strlen \
|
|
cpuid dastest floored fork fucomip munmap_exe rcl_assert \
|
|
rcrl readline1 sha1_test shortpush shorts smc1 \
|
|
pth_blockedsig \
|
|
coolo_sigaction gxx304
|
|
|
|
CFLAGS = $(WERROR) -Winline -Wall -Wshadow -g
|
|
CXXFLAGS = $(CFLAGS)
|
|
|
|
# generic C ones
|
|
bitfield1_SOURCES = bitfield1.c
|
|
bt_everything_SOURCES = bt_everything.c
|
|
bt_literal_SOURCES = bt_literal.c
|
|
cpuid_SOURCES = cpuid_c.c cpuid_s.s
|
|
coolo_strlen_SOURCES = coolo_strlen.c
|
|
dastest_SOURCES = dastest_c.c dastest_s.s
|
|
fork_SOURCES = fork.c
|
|
floored_SOURCES = floored.c
|
|
floored_LDADD = -lm
|
|
fucomip_SOURCES = fucomip.c
|
|
munmap_exe_SOURCES = munmap_exe.c
|
|
rcl_assert_SOURCES = rcl_assert.S
|
|
rcrl_SOURCES = rcrl.c
|
|
readline1_SOURCES = readline1.c
|
|
smc1_SOURCES = smc1.c
|
|
sha1_test_SOURCES = sha1_test.c
|
|
shortpush_SOURCES = shortpush.c
|
|
shorts_SOURCES = shorts.c
|
|
|
|
# pthread C ones
|
|
pth_blockedsig_SOURCES = pth_blockedsig.c
|
|
pth_blockedsig_LDADD = -lpthread
|
|
|
|
# generic C++ ones
|
|
coolo_sigaction_SOURCES = coolo_sigaction.cpp
|
|
gxx304_SOURCES = gxx304.cpp
|
|
|
|
|