From: John Gilmore Date: Fri, 17 Mar 1995 05:14:11 +0000 (+0000) Subject: * Makefile.in (CFLAGS): Avoid continuation line that starts with X-Git-Tag: krb5-1.0-beta5~547 X-Git-Url: http://git.tremily.us/?a=commitdiff_plain;h=5418c5f1876765bcd99aa8a4f1610db212fadc9d;p=krb5.git * Makefile.in (CFLAGS): Avoid continuation line that starts with dash; it confuses the Unix->MPW makefile converter. (##DOSLIBNAME): No longer needed since DLL built one level up. (all-mac): Add. (libcrypto.a): Use explicit "./" on paths to DONE files, to help Unix->MPW makefile converter with rotten Mac pathname conventions. git-svn-id: svn://anonsvn.mit.edu/krb5/trunk@5141 dc483132-0cff-0310-8789-dd5450dbe970 --- diff --git a/src/lib/crypto/ChangeLog b/src/lib/crypto/ChangeLog index b84541918..d684f68b8 100644 --- a/src/lib/crypto/ChangeLog +++ b/src/lib/crypto/ChangeLog @@ -1,3 +1,12 @@ +Thu Mar 16 21:10:37 1995 John Gilmore (gnu at toad.com) + + * Makefile.in (CFLAGS): Avoid continuation line that starts with + dash; it confuses the Unix->MPW makefile converter. + (##DOSLIBNAME): No longer needed since DLL built one level up. + (all-mac): Add. + (libcrypto.a): Use explicit "./" on paths to DONE files, to + help Unix->MPW makefile converter with rotten Mac pathname conventions. + Wed Mar 15 20:23:17 1995 Keith Vetter (keithv@fusion.com) * Makefile.in: cleaned up for the PC diff --git a/src/lib/crypto/Makefile.in b/src/lib/crypto/Makefile.in index 78191b1d8..19277d1dc 100644 --- a/src/lib/crypto/Makefile.in +++ b/src/lib/crypto/Makefile.in @@ -1,9 +1,6 @@ -CFLAGS = $(CCOPTS) $(DEFS) -I$(srcdir)/crc32 -I$(srcdir)/des -I$(srcdir)/md4 \ - -I$(srcdir)/md5 -LDFLAGS = -g +CFLAGS = $(CCOPTS) $(DEFS) -I$(srcdir)/crc32 -I$(srcdir)/des -I$(srcdir)/md4 -I$(srcdir)/md5 ##DOSBUILDTOP = ..\.. -##DOSLIBNAME=crypto.lib ##DOS!include $(BUILDTOP)\config\windows.in TST=if test -n "`cat DONE`" ; then @@ -21,10 +18,12 @@ SRCS= $(srcdir)/cryptoconf.c \ all:: all-$(WHAT) all-unix:: +# FIXME, need to build the library too... +all-mac:: $(OBJS) all-windows:: $(OBJS) -libcrypto.a: des/DONE md4/DONE md5/DONE crc32/DONE os/DONE $(OBJS) +libcrypto.a: ./des/DONE ./md4/DONE ./md5/DONE ./crc32/DONE ./os/DONE $(OBJS) (cd des; $(TST) $(ARADD) ../$@ `cat DONE` ; fi) (cd crc32; $(TST) $(ARADD) ../$@ `cat DONE` ; fi) (cd md4; $(TST) $(ARADD) ../$@ `cat DONE` ; fi)