From 8931a0559cbe79b12be5d60912b9e2045f2c6379 Mon Sep 17 00:00:00 2001 From: Johan Danielsson Date: Sun, 15 Dec 1996 16:54:01 +0000 Subject: [PATCH] x git-svn-id: svn://svn.h5l.se/heimdal/trunk/heimdal@1105 ec53bebd-3082-4978-b11e-865c3cabbd6b --- include/Makefile.in | 11 +++++++++-- 1 file changed, 9 insertions(+), 2 deletions(-) diff --git a/include/Makefile.in b/include/Makefile.in index cef519503..d436fe4db 100644 --- a/include/Makefile.in +++ b/include/Makefile.in @@ -1,10 +1,11 @@ -HEADERS = krb5.h asn1.h des.h bits.h cache.h config_file.h +HEADERS = krb5.h asn1.h des.h md4.h bits.h cache.h config_file.h srcdir = @srcdir@ VPATH = $(srcdir) top_srcdir = @top_srcdir@ CC = @CC@ CFLAGS = @CFLAGS@ +DEFS = -DHOST=\"@CANONICAL_HOST@\" LN_S = ln -s @@ -14,6 +15,9 @@ all: done; \ if [ ! -z "$$X" ]; then $(MAKE) $$X; fi +.c.o: + $(CC) $(CFLAGS) $(DEFS) -c $< + clean: rm -f $(HEADERS) bits *.o core @@ -32,8 +36,11 @@ asn1.h: des.h: $(LN_S) $(top_srcdir)/lib/des/des.h . +md4.h: + $(LN_S) $(top_srcdir)/lib/des/md4.h . + bits.h: bits - ./bits > bits.h + ./bits bits.h bits: bits.o $(CC) -o bits bits.o