Removed "foo:: foo-$(WHAT)" lines from the Makefile
authorTheodore Tso <tytso@mit.edu>
Mon, 25 Sep 1995 20:50:11 +0000 (20:50 +0000)
committerTheodore Tso <tytso@mit.edu>
Mon, 25 Sep 1995 20:50:11 +0000 (20:50 +0000)
git-svn-id: svn://anonsvn.mit.edu/krb5/trunk@6857 dc483132-0cff-0310-8789-dd5450dbe970

src/lib/crypto/crc32/ChangeLog
src/lib/crypto/crc32/Makefile.in
src/lib/crypto/des/ChangeLog
src/lib/crypto/des/Makefile.in
src/lib/crypto/md4/ChangeLog
src/lib/crypto/md4/Makefile.in
src/lib/crypto/md5/ChangeLog
src/lib/crypto/md5/Makefile.in
src/lib/crypto/os/ChangeLog
src/lib/crypto/os/Makefile.in

index 313d1d7fa037cb4f97bdd134c74579dbf8dc1b68..3a37fb44f1ec9f5c90e59860fa078e12f134b719 100644 (file)
@@ -1,3 +1,8 @@
+Mon Sep 25 16:48:23 1995  Theodore Y. Ts'o  <tytso@dcl>
+
+       * Makefile.in: Removed "foo:: foo-$(WHAT)" lines from the
+               Makefile. 
+
 Wed Sep 13 10:28:47 1995 Keith Vetter (keithv@fusion.com)
 
        * crc.c: put function prototype back in.
index 615ed586c36c4d72ee68245ee1d9f91f6edf1b00..231e2c49462221fb02f55b601febad695838724f 100644 (file)
@@ -12,11 +12,9 @@ OBJS=        crc.$(OBJEXT)
 
 SRCS=  $(srcdir)/crc.c $(srcdir)/crctest.c
 
-all:: all-$(WHAT) $(OBJS)
-
-all-unix:: shared
-all-mac:: shared
-all-windows::
+all-unix:: shared $(OBJS) 
+all-mac:: shared $(OBJS) 
+all-windows:: $(OBJS)
 
 shared:
        mkdir shared
@@ -31,7 +29,7 @@ crctest.exe:
 check:: crctest$(EXEEXT)
        $(C)crctest$(EXEEXT) < $(srcdir)$(S)crc-test
 
-clean:: clean-$(WHAT)
+clean:: 
        $(RM) crctest$(EXEEXT) crctest.$(OBJEXT)
 
 clean-unix::
index 9f664d31bd1bec89573103af228dfd489cf00964..80254d692285e46167ca83f8aba509ce6628e20e 100644 (file)
@@ -1,3 +1,8 @@
+Mon Sep 25 16:48:36 1995  Theodore Y. Ts'o  <tytso@dcl>
+
+       * Makefile.in: Removed "foo:: foo-$(WHAT)" lines from the
+               Makefile. 
+
 Fri Sep 22 23:32:58 1995  Theodore Y. Ts'o  <tytso@dcl>
 
        * des_int.h: Define PROTOTYPE if it is not defined elsewhere.
index 0937cca9c29d15cbe50d1d84f1930e11e436776b..5cd1c04eeb38d94a378da988bea0ea5556683bc4 100644 (file)
@@ -45,7 +45,7 @@ SRCS= $(srcdir)/cs_entry.c    \
        $(srcdir)/weak_key.c    \
        $(OTHERSRCS)
 
-all:: all-$(WHAT) $(OBJS)
+all:: $(OBJS)
 
 all-unix:: shared
 all-mac:: shared
@@ -68,8 +68,6 @@ verify$(EXEEXT): verify.$(OBJEXT) $(DEPKLIB)
 destest$(EXEEXT): destest.$(OBJEXT) $(DEPKLIB)
        $(CC) -o $@ destest.$(OBJEXT) $(KLIB) $(LIBS) $(CFLAGS) $(LDFLAGS) 
 
-check:: check-$(WHAT)
-
 check-mac: check-unix
 
 check-unix:: destest verify
@@ -80,7 +78,7 @@ check-unix:: destest verify
 
 check-windows::
 
-clean:: clean-$(WHAT)
+clean:: 
        $(RM) destest$(EXEEXT) verify$(EXEEXT) destest.$(OBJEXT) verify.$(OBJEXT)
 
 clean-unix::
index 97b5afe3e0a2e7ecc391ba5fa66506c086bb087a..3d548ba1b42692afc1565a3341edae7a28f55190 100644 (file)
@@ -1,3 +1,8 @@
+Mon Sep 25 16:48:57 1995  Theodore Y. Ts'o  <tytso@dcl>
+
+       * Makefile.in: Removed "foo:: foo-$(WHAT)" lines from the
+               Makefile. 
+
 Wed Sep 13 10:30:58 1995 Keith Vetter (keithv@fusion.com)
 
        * md4crypt.c: put function prototype back in, fixed signed/unsigned
index faecdffc48efd8bf6910a998d745bf4303aee45c..466081a113feaedfd8f439e7f4f731f798672df8 100644 (file)
@@ -13,11 +13,9 @@ OBJS=        md4.$(OBJEXT) md4glue.$(OBJEXT) md4crypto.$(OBJEXT)
 
 SRCS=  $(srcdir)/md4.c $(srcdir)/md4glue.c $(srcdir)/md4crypto.c
 
-all:: all-$(WHAT) $(OBJS)
-
-all-unix:: shared
-all-mac:: shared
-all-windows::
+all-unix:: shared $(OBJS) 
+all-mac:: shared $(OBJS) 
+all-windows:: $(OBJS)
 
 shared:
        mkdir shared
@@ -52,9 +50,7 @@ check-unix:: t_mddriver t_cksum
 check-windows:: t_mddriver$(EXEEXT)
        $(C)t_mddriver$(EXEEXT) -x
 
-check:: check-$(WHAT)
-
-clean:: clean-$(WHAT)
+clean:: 
        $(RM) t_mddriver$(EXEEXT) t_mddriver.$(OBJEXT) t_mddriver.c
        $(RM) t_cksum$(EXEEXT) t_cksum.$(OBJEXT) t_cksum.c
 
index 5c23103d40fe077dbc703b940af8e5229ec84401..5f19bd7ce81f1446f52c0ff51e26fabe8d1b07dd 100644 (file)
@@ -1,3 +1,8 @@
+Mon Sep 25 16:49:06 1995  Theodore Y. Ts'o  <tytso@dcl>
+
+       * Makefile.in: Removed "foo:: foo-$(WHAT)" lines from the
+               Makefile. 
+
 Wed Sep 13 10:30:58 1995 Keith Vetter (keithv@fusion.com)
 
        * md5crypt.c: put function prototype back in, fixed signed/unsigned
index cd882e692f519f1b2deff85cf80e436501647e85..39edd2f3ef1058b1c6a4edc0d24d58a9528e6065 100644 (file)
@@ -12,11 +12,9 @@ OBJS=        md5.$(OBJEXT) md5glue.$(OBJEXT) md5crypto.$(OBJEXT)
 
 SRCS=  $(srcdir)/md5.c $(srcdir)/md5glue.c $(srcdir)/md5crypto.c
 
-all:: all-$(WHAT) $(OBJS) 
-
-all-unix:: shared
-all-mac:: shared
-all-windows::
+all-unix:: shared $(OBJS) 
+all-mac:: shared $(OBJS) 
+all-windows:: $(OBJS)
 
 shared:
        mkdir shared
@@ -37,9 +35,7 @@ check-unix:: t_mddriver t_cksum
 check-windows:: t_mddriver$(EXEEXT)
        $(C)t_mddriver$(EXEEXT) -x
 
-check:: check-$(WHAT)
-
-clean:: clean-$(WHAT)
+clean:: 
        $(RM) t_mddriver$(EXEEXT) t_mddriver.$(OBJEXT)
        $(RM) t_cksum$(EXEEXT) t_cksum.$(OBJEXT)
 
index a23d04bb1f92329387c5a66ebd91b8c21452fabb..b60e1d137d988b58aa112a4872e9651f672542aa 100644 (file)
@@ -1,3 +1,8 @@
+Mon Sep 25 16:49:15 1995  Theodore Y. Ts'o  <tytso@dcl>
+
+       * Makefile.in: Removed "foo:: foo-$(WHAT)" lines from the
+               Makefile. 
+
 Fri Sep 22 12:00:00 1995  James Mattly  <mattly@fusion.com>
 
        * c_localaddr.c:  change close on a socket to closesocket, sockets on
index bdf087b481d20f8904e11173c0f9ef6a1a3b8185..8777a53374e4a6716743c3e55f5a583d95d1e1f8 100644 (file)
@@ -15,8 +15,6 @@ OBJS= $(COBJS) $(LIBOBJS)
 
 SRCS=  rnd_confoun.c c_localaddr.c c_ustime.c
 
-all:: all-$(WHAT)
-
 all-unix:: shared $(OBJS)
 
 all-mac:: $(OBJS)
@@ -34,7 +32,7 @@ memmove.o: memmove.c
 @SHARED_RULE_LOCAL@
        
 
-clean:: clean-$(WHAT)
+clean:: 
        $(RM) memmove.c
 
 clean-unix::