* Makefile.in (crctest, crctest.exe): Replace crctest-unix and
authorJohn Gilmore <gnu@toad.com>
Fri, 17 Mar 1995 05:16:22 +0000 (05:16 +0000)
committerJohn Gilmore <gnu@toad.com>
Fri, 17 Mar 1995 05:16:22 +0000 (05:16 +0000)
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

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

index 1b8f3eae61799d63e49035934ad63d241fa5cea1..24b0660f458855b154b2737434b4dac9d0002635 100644 (file)
@@ -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),
index c4e7230bbf3139f544da80c88715eb0901eca857..fdcefce1f9022680637ef2da223c217a6f91d576 100644 (file)
@@ -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::