diff options
author | John Gilmore <gnu@toad.com> | 1995-03-17 05:14:11 +0000 |
---|---|---|
committer | John Gilmore <gnu@toad.com> | 1995-03-17 05:14:11 +0000 |
commit | 5418c5f1876765bcd99aa8a4f1610db212fadc9d (patch) | |
tree | 35a1eabcd2b6d7a5f29012b62feedbff7179549e /src | |
parent | 3386d1496d8d9b9f021ce6af9a00d1aee794fc46 (diff) | |
download | krb5-5418c5f1876765bcd99aa8a4f1610db212fadc9d.tar.gz krb5-5418c5f1876765bcd99aa8a4f1610db212fadc9d.tar.xz krb5-5418c5f1876765bcd99aa8a4f1610db212fadc9d.zip |
* 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
Diffstat (limited to 'src')
-rw-r--r-- | src/lib/crypto/ChangeLog | 9 | ||||
-rw-r--r-- | src/lib/crypto/Makefile.in | 9 |
2 files changed, 13 insertions, 5 deletions
diff --git a/src/lib/crypto/ChangeLog b/src/lib/crypto/ChangeLog index b845419186..d684f68b8e 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 78191b1d88..19277d1dc4 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) |