summaryrefslogtreecommitdiffstats
path: root/src/lib/crypto
diff options
context:
space:
mode:
authorJohn Gilmore <gnu@toad.com>1995-03-17 05:16:22 +0000
committerJohn Gilmore <gnu@toad.com>1995-03-17 05:16:22 +0000
commita31ef098d251569746200a3744fbde7cfc384544 (patch)
treef74f581ebdfbea5bd23f767ef2c8428d711549a6 /src/lib/crypto
parent5418c5f1876765bcd99aa8a4f1610db212fadc9d (diff)
downloadkrb5-a31ef098d251569746200a3744fbde7cfc384544.tar.gz
krb5-a31ef098d251569746200a3744fbde7cfc384544.tar.xz
krb5-a31ef098d251569746200a3744fbde7cfc384544.zip
* Makefile.in (crctest, crctest.exe): Replace crctest-unix and
crctest-windows with versions that work for Mac too. (check): Build and run crctest$(EXEEXT). This runs on MPW now. git-svn-id: svn://anonsvn.mit.edu/krb5/trunk@5142 dc483132-0cff-0310-8789-dd5450dbe970
Diffstat (limited to 'src/lib/crypto')
-rw-r--r--src/lib/crypto/crc32/ChangeLog6
-rw-r--r--src/lib/crypto/crc32/Makefile.in9
2 files changed, 10 insertions, 5 deletions
diff --git a/src/lib/crypto/crc32/ChangeLog b/src/lib/crypto/crc32/ChangeLog
index 1b8f3eae6..24b0660f4 100644
--- a/src/lib/crypto/crc32/ChangeLog
+++ b/src/lib/crypto/crc32/ChangeLog
@@ -1,3 +1,9 @@
+Thu Mar 16 21:14:15 1995 John Gilmore (gnu at toad.com)
+
+ * Makefile.in (crctest, crctest.exe): Replace crctest-unix and
+ crctest-windows with versions that work for Mac too.
+ (check): Build and run crctest$(EXEEXT). This runs on MPW now.
+
Tue Mar 14 17:20:47 1995 Keith Vetter (keithv@fusion.com)
* crc.c: removed method for pulling in a data structure (windows),
diff --git a/src/lib/crypto/crc32/Makefile.in b/src/lib/crypto/crc32/Makefile.in
index c4e7230bb..fdcefce1f 100644
--- a/src/lib/crypto/crc32/Makefile.in
+++ b/src/lib/crypto/crc32/Makefile.in
@@ -10,15 +10,14 @@ SRCS= $(srcdir)/crc.c $(srcdir)/crctest.c
all:: $(OBJS)
-crctest-unix: crctest.$(OBJEXT) $(OBJS)
+crctest: crctest.$(OBJEXT) $(OBJS)
$(RM) crctest
- $(CC) -o crctest crctest.$(OBJEXT) $(CCFLAGS) $(OBJS)
+ $(CC) -o crctest crctest.$(OBJEXT) $(CFLAGS) $(LDFLAGS) $(OBJS)
-crctest-windows:
+crctest.exe:
$(CC) -o crctest.exe $(CFLAGS2) $(SRCS)
- $(RM) $(OBJS)
-check:: crctest-$(WHAT)
+check:: crctest$(EXEEXT)
$(C)crctest$(EXEEXT) < $(srcdir)$(S)crc-test
clean::