diff options
Diffstat (limited to 'src')
| -rw-r--r-- | src/config/post.in | 8 | ||||
| -rw-r--r-- | src/config/pre.in | 45 |
2 files changed, 53 insertions, 0 deletions
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 |
