diff options
Diffstat (limited to 'cipher')
-rw-r--r-- | cipher/ChangeLog | 4 | ||||
-rw-r--r-- | cipher/Makefile.am | 8 |
2 files changed, 8 insertions, 4 deletions
diff --git a/cipher/ChangeLog b/cipher/ChangeLog index 9174d424b..664570c0c 100644 --- a/cipher/ChangeLog +++ b/cipher/ChangeLog @@ -1,3 +1,7 @@ +2001-10-22 Werner Koch <[email protected]> + + * Makefile.am: Need to use $(EXEEXT) where approriate. + 2001-09-09 Werner Koch <[email protected]> * rsa.c (rsa_get_info): s/usage/r_usage/ to avoid shadow warnings. diff --git a/cipher/Makefile.am b/cipher/Makefile.am index 023b8dc5a..f89a0b735 100644 --- a/cipher/Makefile.am +++ b/cipher/Makefile.am @@ -85,7 +85,7 @@ libcipher_a_LIBADD = @STATIC_CIPHER_OBJS@ # If I remember it correct, automake 1.4 has a feature to set # fooFLAGS depending on the program. So we should check it out. -tiger: $(srcdir)/tiger.c +tiger$(EXEEXT): $(srcdir)/tiger.c `echo $(COMPILE) $(DYNLINK_MOD_CFLAGS) -o tiger $(srcdir)/tiger.c | \ sed -e 's/-O[2-9s]*/-O/g' ` @@ -103,12 +103,12 @@ twofish: $(srcdir)/twofish.c # `echo $(COMPILE) -c $(srcdir)/twofish.c | sed -e 's/-O[0-9s]*/ /g' ` -rndunix: $(srcdir)/rndunix.c +rndunix$(EXEEXT): $(srcdir)/rndunix.c $(COMPILE) $(DYNLINK_MOD_CFLAGS) -o rndunix $(srcdir)/rndunix.c -rndlinux: $(srcdir)/rndlinux.c +rndlinux$(EXEEXT): $(srcdir)/rndlinux.c $(COMPILE) $(DYNLINK_MOD_CFLAGS) -o rndlinux $(srcdir)/rndlinux.c -rndegd: $(srcdir)/rndegd.c +rndegd$(EXEEXT): $(srcdir)/rndegd.c $(COMPILE) $(DYNLINK_MOD_CFLAGS) -o rndegd $(srcdir)/rndegd.c |