summaryrefslogtreecommitdiff
path: root/src/tests/shlib/Makefile.in
diff options
context:
space:
mode:
Diffstat (limited to 'src/tests/shlib/Makefile.in')
-rw-r--r--src/tests/shlib/Makefile.in23
1 files changed, 23 insertions, 0 deletions
diff --git a/src/tests/shlib/Makefile.in b/src/tests/shlib/Makefile.in
new file mode 100644
index 000000000000..ce67be45b561
--- /dev/null
+++ b/src/tests/shlib/Makefile.in
@@ -0,0 +1,23 @@
+mydir=tests$(S)shlib
+BUILDTOP=$(REL)..$(S)..
+
+#VALGRIND=valgrind
+#VALGRINDFLAGS=--tool=memcheck --leak-check=yes --show-reachable=yes
+
+SRCS=$(srcdir)/t_loader.c
+
+all:
+
+run-t_loader: t_loader
+ $(RUN_TEST) ./t_loader
+
+t_loader: t_loader.o
+ $(CC_LINK) -o t_loader t_loader.o $(DL_LIB)
+
+check-unix:
+
+install:
+
+clean:
+ $(RM) t_loader.o t_loader
+