summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorJohn Gilmore <gnu@toad.com>1995-03-17 05:22:21 +0000
committerJohn Gilmore <gnu@toad.com>1995-03-17 05:22:21 +0000
commit3736158e80cce69231b6493e4eeea3e69f100a9c (patch)
treec2295eacdaad78088b6936d0b92a1afaff911bd1 /src
parent4dd1c4ca7319707587a565a0fcd8b105e285d4c1 (diff)
downloadkrb5-3736158e80cce69231b6493e4eeea3e69f100a9c.tar.gz
krb5-3736158e80cce69231b6493e4eeea3e69f100a9c.tar.xz
krb5-3736158e80cce69231b6493e4eeea3e69f100a9c.zip
* Makefile.in (CFLAGS): Tweak for Unix->MPW converter.
(LDFLAGS): Remove, conflicts with pre.in. (all): Remove all-$(WHAT) stuff, generalize for all platforms. (t_mddriver): Remove t_mddriver-$(WHAT) stuff, ditto. (check): Use $(EXEEXT). git-svn-id: svn://anonsvn.mit.edu/krb5/trunk@5144 dc483132-0cff-0310-8789-dd5450dbe970
Diffstat (limited to 'src')
-rw-r--r--src/lib/crypto/md4/ChangeLog8
-rw-r--r--src/lib/crypto/md4/Makefile.in15
2 files changed, 13 insertions, 10 deletions
diff --git a/src/lib/crypto/md4/ChangeLog b/src/lib/crypto/md4/ChangeLog
index d3b30d1b77..cddab1d7bf 100644
--- a/src/lib/crypto/md4/ChangeLog
+++ b/src/lib/crypto/md4/ChangeLog
@@ -1,3 +1,11 @@
+Thu Mar 16 21:19:55 1995 John Gilmore (gnu at toad.com)
+
+ * Makefile.in (CFLAGS): Tweak for Unix->MPW converter.
+ (LDFLAGS): Remove, conflicts with pre.in.
+ (all): Remove all-$(WHAT) stuff, generalize for all platforms.
+ (t_mddriver): Remove t_mddriver-$(WHAT) stuff, ditto.
+ (check): Use $(EXEEXT).
+
Tue Mar 14 17:24:57 1995 Keith Vetter (keithv@fusion.com)
* md4crypto.c: removed method for DLL data since everything's
diff --git a/src/lib/crypto/md4/Makefile.in b/src/lib/crypto/md4/Makefile.in
index 6dbe1066b5..c2cb995c25 100644
--- a/src/lib/crypto/md4/Makefile.in
+++ b/src/lib/crypto/md4/Makefile.in
@@ -1,6 +1,5 @@
# -I$(srcdir) is needed to pull in $(srcdir)/rsa-md4.h for ./t_mddriver.c.
-CFLAGS = $(CCOPTS) $(DEFS) -I$(srcdir)/../des -I$(srcdir)
-LDFLAGS = -g
+CFLAGS = $(CCOPTS) $(DEFS) -I$(srcdir)/../des -I"$(srcdir)"
##DOSBUILDTOP = ..\..\..
##DOSLIBNAME=..\crypto.lib
@@ -10,11 +9,7 @@ OBJS= md4.$(OBJEXT) md4glue.$(OBJEXT) md4crypto.$(OBJEXT)
SRCS= $(srcdir)/md4.c $(srcdir)/md4glue.c $(srcdir)/md4crypto.c
-all:: $(OBJS) all-$(WHAT)
-
-all-unix:: t_mddriver-unix
-
-all-windows::
+all:: $(OBJS)
t_mddriver.c: $(srcdir)/../md5/t_mddriver.c
$(CP) $(srcdir)/../md5/t_mddriver.c t_mddriver.c
@@ -22,15 +17,15 @@ t_mddriver.c: $(srcdir)/../md5/t_mddriver.c
t_mddriver.o: t_mddriver.c
$(CC) -DMD=4 $(CFLAGS) -c t_mddriver.c
-t_mddriver-unix: t_mddriver.o md4.o
+t_mddriver: t_mddriver.o md4.o
$(CC) $(CFLAGS) -o t_mddriver t_mddriver.o md4.o
-t_mddriver-windows:
+t_mddriver.exe:
$(CP) $(srcdir)\..\md5\t_mddriver.c t_mddriver.c
$(CC) -DMD=4 $(CFLAGS2) -o t_mddriver t_mddriver.c md4.c
$(RM) md4.obj
-check:: t_mddriver-$(WHAT)
+check:: t_mddriver$(EXEEXT)
$(C)t_mddriver$(EXEEXT) -x
clean::