From 2505db3d560033fc59216bc809cd96ca6f0772ad Mon Sep 17 00:00:00 2001 From: Mark Eichin Date: Sat, 2 Jul 1994 00:26:58 +0000 Subject: [PATCH] common bits of Makefile.in git-svn-id: svn://anonsvn.mit.edu/krb5/trunk@3942 dc483132-0cff-0310-8789-dd5450dbe970 --- src/config/post.in | 8 ++++++++ src/config/pre.in | 45 +++++++++++++++++++++++++++++++++++++++++++++ 2 files changed, 53 insertions(+) create mode 100644 src/config/post.in create mode 100644 src/config/pre.in diff --git a/src/config/post.in b/src/config/post.in new file mode 100644 index 000000000..0d3de0c65 --- /dev/null +++ b/src/config/post.in @@ -0,0 +1,8 @@ +# config/post.in +# put all:: first just in case no other rules occur here +# +all:: + +clean:: + if test -n "$(OBJS)" ; then $(RM) $(OBJS) fi + diff --git a/src/config/pre.in b/src/config/pre.in new file mode 100644 index 000000000..3b2c3e2db --- /dev/null +++ b/src/config/pre.in @@ -0,0 +1,45 @@ +## config/pre.in +## common prefix for all Makefile.in in the Kerberos V5 tree. + +BUILDTOP = @BUILDTOP@ +srcdir = @srcdir@ +VPATH = @srcdir@ + +DEFS = @DEFS@ +CC = @CC@ +CCOPTS = @CCOPTS@ +LIBS = @LIBS@ +KRB5ROOT= @KRB5ROOT@ + +KRB5MANROOT = $(KRB5ROOT)/man +ADMIN_BINDIR = $(KRB5ROOT)/admin +SERVER_BINDIR = $(KRB5ROOT)/sbin +CLIENT_BINDIR = $(KRB5ROOT)/bin +ADMIN_MANDIR = $(KRB5MANROOT)/man8 +SERVER_MANDIR = $(KRB5MANROOT)/man8 +CLIENT_MANDIR = $(KRB5MANROOT)/man1 +FILE_MANDIR = $(KRB5MANROOT)/man5 +KRB5_LIBDIR = $(KRB5ROOT)/lib +KRB5_INCDIR = $(KRB5ROOT)/include +KRB5_INCSUBDIRS = \ + $(KRB5_INCDIR)/krb5 \ + $(KRB5_INCDIR)/asn.1 \ + $(KRB5_INCDIR)/kerberosIV + + +RM = rm -f +CP = cp +MV = mv +CHMOD=chmod +RANLIB = @RANLIB@ +ARCHIVE = @ARCHIVE@ +ARADD = @ARADD@ +LN = @LN_S@ +AWK = @AWK@ +LEX = @LEX@ +LEXLIB = @LEXLIB@ + +SRCTOP = $(srcdir)/$(BUILDTOP) +SUBDIRS = @SUBDIRS@ + +TOPLIBD = $(BUILDTOP)/lib -- 2.26.2