diff options
Diffstat (limited to 'src')
| -rw-r--r-- | src/lib/crypto/des/ChangeLog | 3 | ||||
| -rw-r--r-- | src/lib/crypto/des/Makefile.in | 8 |
2 files changed, 6 insertions, 5 deletions
diff --git a/src/lib/crypto/des/ChangeLog b/src/lib/crypto/des/ChangeLog index eb96c6fc8..bf4c17306 100644 --- a/src/lib/crypto/des/ChangeLog +++ b/src/lib/crypto/des/ChangeLog @@ -1,5 +1,8 @@ Thu Oct 6 12:49:29 1994 Theodore Y. Ts'o (tytso@dcl) + * Makefile.in: Make sure the "make check" programs get cleaned up + on a "make clean". + * verify.c (main): Take out check that assures that long is 4 bytes. The DES implementation shouldn't be depending on this, and if it is, then that's what the verify program diff --git a/src/lib/crypto/des/Makefile.in b/src/lib/crypto/des/Makefile.in index 8f475bc27..8ae0ccfbb 100644 --- a/src/lib/crypto/des/Makefile.in +++ b/src/lib/crypto/des/Makefile.in @@ -45,7 +45,8 @@ SRCS= $(srcdir)/cs_entry.c \ includes:: depend -all:: +all:: + depend:: $(SRCS) clean:: @@ -54,9 +55,6 @@ clean:: verify: verify.o $(DEPKLIB) $(CC) -o $@ verify.o $(KLIB) $(LIBS) $(LDFLAGS) -clean:: - $(RM) verify destest - destest: destest.o $(DEPKLIB) $(CC) -o $@ destest.o $(KLIB) $(LIBS) $(LDFLAGS) @@ -67,4 +65,4 @@ check:: destest verify ./destest < $(srcdir)/keytest.data clean:: - $(RM) destest + $(RM) destest verify destest.o verify.o |
