* Makefile.in (CFLAGS): Avoid continuation line that starts with
authorJohn Gilmore <gnu@toad.com>
Fri, 17 Mar 1995 05:14:11 +0000 (05:14 +0000)
committerJohn Gilmore <gnu@toad.com>
Fri, 17 Mar 1995 05:14:11 +0000 (05:14 +0000)
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

src/lib/crypto/ChangeLog
src/lib/crypto/Makefile.in

index b845419186ea1cd8f9e47c3ba1c793a2044d4618..d684f68b8e24c66d8a5b16d38f1958b1baf7a74f 100644 (file)
@@ -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
index 78191b1d88b88aaeeac3288bda74933eca466d78..19277d1dc41566d605a148fe65ed23dc881ffefa 100644 (file)
@@ -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)