mirror of
https://github.com/ioacademy-jikim/debugging
synced 2025-06-10 09:26:15 +00:00
51 lines
1.3 KiB
Makefile
51 lines
1.3 KiB
Makefile
|
|
include $(top_srcdir)/Makefile.tool-tests.am
|
|
|
|
dist_noinst_SCRIPTS = filter_stderr
|
|
|
|
EXTRA_DIST = \
|
|
brk.stderr.exp brk.vgtest \
|
|
capget.vgtest capget.stderr.exp capget.stderr.exp2 \
|
|
ioctl-tiocsig.vgtest ioctl-tiocsig.stderr.exp \
|
|
lsframe1.vgtest lsframe1.stdout.exp lsframe1.stderr.exp \
|
|
lsframe2.vgtest lsframe2.stdout.exp lsframe2.stderr.exp \
|
|
rfcomm.vgtest rfcomm.stderr.exp \
|
|
sigqueue.vgtest sigqueue.stderr.exp \
|
|
stack_changes.stderr.exp stack_changes.stdout.exp \
|
|
stack_changes.stdout.exp2 stack_changes.vgtest \
|
|
stack_switch.stderr.exp stack_switch.vgtest \
|
|
syscalls-2007.vgtest syscalls-2007.stderr.exp \
|
|
syslog-syscall.vgtest syslog-syscall.stderr.exp \
|
|
sys-openat.vgtest sys-openat.stderr.exp sys-openat.stdout.exp \
|
|
timerfd-syscall.vgtest timerfd-syscall.stderr.exp \
|
|
with-space.stderr.exp with-space.stdout.exp with-space.vgtest \
|
|
proc-auxv.vgtest proc-auxv.stderr.exp getregset.vgtest \
|
|
getregset.stderr.exp getregset.stdout.exp
|
|
|
|
check_PROGRAMS = \
|
|
brk \
|
|
capget \
|
|
ioctl-tiocsig \
|
|
getregset \
|
|
lsframe1 \
|
|
lsframe2 \
|
|
rfcomm \
|
|
sigqueue \
|
|
stack_changes \
|
|
stack_switch \
|
|
syscalls-2007 \
|
|
syslog-syscall \
|
|
timerfd-syscall \
|
|
proc-auxv
|
|
|
|
if HAVE_AT_FDCWD
|
|
check_PROGRAMS += sys-openat
|
|
endif
|
|
|
|
AM_CFLAGS += $(AM_FLAG_M3264_PRI)
|
|
AM_CXXFLAGS += $(AM_FLAG_M3264_PRI)
|
|
|
|
stack_switch_LDADD = -lpthread
|
|
timerfd_syscall_LDADD = -lrt
|
|
|