* Makefile.in: New file
authorKen Raeburn <raeburn@mit.edu>
Thu, 3 Feb 2005 00:58:07 +0000 (00:58 +0000)
committerKen Raeburn <raeburn@mit.edu>
Thu, 3 Feb 2005 00:58:07 +0000 (00:58 +0000)
git-svn-id: svn://anonsvn.mit.edu/krb5/trunk@17081 dc483132-0cff-0310-8789-dd5450dbe970

src/tests/shlib/ChangeLog [new file with mode: 0644]
src/tests/shlib/Makefile.in [new file with mode: 0644]

diff --git a/src/tests/shlib/ChangeLog b/src/tests/shlib/ChangeLog
new file mode 100644 (file)
index 0000000..00a896e
--- /dev/null
@@ -0,0 +1,4 @@
+2005-02-02  Ken Raeburn  <raeburn@mit.edu>
+
+       * Makefile.in: New file.
+
diff --git a/src/tests/shlib/Makefile.in b/src/tests/shlib/Makefile.in
new file mode 100644 (file)
index 0000000..8d9166f
--- /dev/null
@@ -0,0 +1,38 @@
+thisconfigdir=./..
+myfulldir=tests/shlib
+mydir=shlib
+BUILDTOP=$(REL)..$(S)..
+PROG_LIBPATH=-L$(TOPLIBD)
+PROG_RPATH=$(KRB5_LIBDIR)
+
+RUN_SETUP = @KRB5_RUN_ENV@
+
+VALGRIND=valgrind
+VALGRINDFLAGS=--tool=memcheck --leak-check=yes --show-reachable=yes
+
+SRCS=$(srcdir)/t_loader.c
+
+all:: t_loader
+
+run-t_loader: t_loader
+       $(RUN_SETUP) ./t_loader
+
+valgrind-t_loader: t_loader
+       $(RUN_SETUP) $(VALGRIND) $(VALGRINDFLAGS) ./t_loader
+
+t_loader: t_loader.o
+       $(CC_LINK) -o t_loader t_loader.o -ldl
+
+check-unix::
+
+install::
+
+clean::
+       $(RM) t_loader.o t_loader
+
+# +++ Dependency line eater +++
+# 
+# Makefile dependencies follow.  This must be the last section in
+# the Makefile.in file
+#
+