summaryrefslogtreecommitdiffstats
path: root/src/lib/krb5/ccache/stdio
diff options
context:
space:
mode:
authorMark Eichin <eichin@mit.edu>1994-06-09 23:07:20 +0000
committerMark Eichin <eichin@mit.edu>1994-06-09 23:07:20 +0000
commitbfada90ca02dc1dc5c554eddf8ccba269e24ab99 (patch)
treece283363544a1d7b961c85ee1b8d391bd25b48aa /src/lib/krb5/ccache/stdio
parentb53c50df36fcea380b72b94bce54ae9b1521b93a (diff)
autoconf enhancements for kerberos
git-svn-id: svn://anonsvn.mit.edu/krb5/trunk@3690 dc483132-0cff-0310-8789-dd5450dbe970
Diffstat (limited to 'src/lib/krb5/ccache/stdio')
-rw-r--r--src/lib/krb5/ccache/stdio/Makefile.in38
-rw-r--r--src/lib/krb5/ccache/stdio/configure.in5
2 files changed, 43 insertions, 0 deletions
diff --git a/src/lib/krb5/ccache/stdio/Makefile.in b/src/lib/krb5/ccache/stdio/Makefile.in
new file mode 100644
index 000000000..e7acee5fd
--- /dev/null
+++ b/src/lib/krb5/ccache/stdio/Makefile.in
@@ -0,0 +1,38 @@
+srcdir = @srcdir@
+VPATH = @srcdir@
+
+DEFS = @DEFS@
+LIBS = @LIBS@
+
+CFLAGS = -g $(DEFS)
+LDFLAGS = -g
+
+RM = rm -f
+CP = cp
+
+BUILDTOP = ../../../..
+SRCTOP = $(srcdir)/$(BUILDTOP)
+
+all:: $(OBJS)
+
+clean::
+ $(RM) $(OBJS)
+
+OBJS = scc_close.o scc_destry.o scc_eseq.o \
+ scc_gennew.o scc_getnam.o scc_gprin.o scc_init.o \
+ scc_nseq.o scc_read.o scc_reslv.o scc_retrv.o \
+ scc_sseq.o scc_store.o scc_skip.o scc_ops.o scc_write.o \
+ scc_sflags.o scc_defops.o scc_errs.o scc_maybe.o
+
+SRCS = $(srcdir)/scc_close.c $(srcdir)/scc_destry.c $(srcdir)/scc_eseq.c \
+ $(srcdir)/scc_gennew.c $(srcdir)/scc_getnam.c $(srcdir)/scc_gprin.c \
+ $(srcdir)/scc_init.c $(srcdir)/scc_nseq.c $(srcdir)/scc_read.c \
+ $(srcdir)/scc_reslv.c $(srcdir)/scc_retrv.c $(srcdir)/scc_sseq.c \
+ $(srcdir)/scc_store.c $(srcdir)/scc_skip.c $(srcdir)/scc_ops.c \
+ $(srcdir)/scc_write.c $(srcdir)/scc_sflags.c $(srcdir)/scc_defops.c \
+ $(srcdir)/scc_errs.c $(srcdir)/scc_maybe.c
+
+
+test: ${OBJS} scc_test.o
+ ${CC} -o test ${OBJS} scc_test.o
+
diff --git a/src/lib/krb5/ccache/stdio/configure.in b/src/lib/krb5/ccache/stdio/configure.in
new file mode 100644
index 000000000..184c6f447
--- /dev/null
+++ b/src/lib/krb5/ccache/stdio/configure.in
@@ -0,0 +1,5 @@
+AC_INIT(configure.in)
+CONFIG_RULES
+SubdirLibraryRule([${OBJS}])
+KRB_INCLUDE
+AC_OUTPUT(Makefile,[EXTRA_RULES])