mirror of
https://github.com/Zenithsiz/ftmemsim-valgrind.git
synced 2026-02-04 02:18:37 +00:00
22 lines
523 B
Makefile
22 lines
523 B
Makefile
noinst_SCRIPTS = filter_stderr
|
|
|
|
EXTRA_DIST = filter_stderr \
|
|
dlclose.vgtest dlclose.stderr.exp dlclose.stderr.exp.hd \
|
|
dlclose.stdout.exp \
|
|
fpu-28-108.vgtest fpu-28-108.stderr.exp fpu-28-108.stderr.exp.hd
|
|
|
|
noinst_PROGRAMS = \
|
|
dlclose fpu-28-108 myprint.so
|
|
|
|
AM_CFLAGS = $(WERROR) -Winline -Wall -Wshadow -g
|
|
AM_CXXFLAGS = $(AM_CFLAGS)
|
|
AM_CCASFLAGS = $(AM_CFLAGS)
|
|
|
|
# C ones
|
|
dlclose_SOURCES = dlclose.c
|
|
dlclose_LDADD = -ldl
|
|
myprint_so_SOURCES = myprint.c
|
|
myprint_so_LDFLAGS = -shared
|
|
|
|
fpu_28_108_SOURCES = fpu-28-108.S
|