1
0
mirror of git://git.gnupg.org/gnupg.git synced 2024-06-05 23:07:49 +02:00
gnupg/cipher/Makefile.am

69 lines
1.3 KiB
Makefile
Raw Normal View History

1997-11-18 15:06:00 +01:00
## Process this file with automake to produce Makefile.in
1998-07-29 21:35:05 +02:00
gnupg_extensions = tiger twofish
1998-06-25 12:19:08 +02:00
1998-10-21 19:34:36 +02:00
INCLUDES = -I$(top_srcdir)/include -I$(top_srcdir)/intl
1997-11-18 15:06:00 +01:00
1998-02-02 15:36:06 +01:00
noinst_LIBRARIES = libcipher.a
1998-06-25 12:19:08 +02:00
if ENABLE_GNUPG_EXTENSIONS
pkglib_PROGRAMS = $(gnupg_extensions)
else
pkglib_PROGRAMS =
endif
1997-11-18 15:06:00 +01:00
1998-10-16 18:00:17 +02:00
DYNLINK_MOD_CFLAGS = @DYNLINK_MOD_CFLAGS@
1997-11-18 15:06:00 +01:00
1998-04-07 20:16:10 +02:00
libcipher_a_SOURCES = cipher.c \
1998-06-13 08:59:14 +02:00
pubkey.c \
md.c \
1998-06-09 17:14:06 +02:00
dynload.c \
dynload.h \
1998-09-18 17:24:53 +02:00
des.c \
des.h \
1998-04-07 20:16:10 +02:00
blowfish.c \
1997-11-18 15:06:00 +01:00
blowfish.h \
1998-04-04 22:16:55 +02:00
cast5.c \
cast5.h \
1997-11-18 15:06:00 +01:00
elgamal.c \
elgamal.h \
md5.c \
1998-06-25 12:19:08 +02:00
md5.h \
1997-11-18 15:06:00 +01:00
primegen.c \
1998-03-09 22:44:06 +01:00
random.h \
1997-11-18 15:06:00 +01:00
random.c \
1998-05-13 19:53:36 +02:00
rand-internal.h \
rand-unix.c \
rand-w32.c \
rand-dummy.c \
1997-11-18 15:06:00 +01:00
rmd.h \
rmd160.c \
1997-12-12 13:03:58 +01:00
sha1.h \
sha1.c \
dsa.h \
dsa.c \
1998-06-13 19:00:02 +02:00
g10c.c \
1997-11-18 15:06:00 +01:00
smallprime.c
1998-06-25 12:19:08 +02:00
EXTRA_tiger_SOURCES = tiger.c
1998-07-29 21:35:05 +02:00
EXTRA_twofish_SOURCES = twofish.c
1998-06-25 12:19:08 +02:00
1998-07-29 21:35:05 +02:00
1998-09-11 07:47:32 +02:00
tiger: $(srcdir)/tiger.c
1998-10-16 18:00:17 +02:00
`echo $(COMPILE) $(DYNLINK_MOD_CFLAGS) -o tiger $(srcdir)/tiger.c | \
1998-10-12 22:16:38 +02:00
sed -e 's/-O[2-9]*/-O1/' `
1998-09-11 07:47:32 +02:00
twofish: $(srcdir)/twofish.c
1998-10-16 18:00:17 +02:00
`echo $(COMPILE) $(DYNLINK_MOD_CFLAGS) -o twofish $(srcdir)/twofish.c | \
1998-10-12 22:16:38 +02:00
sed -e 's/-O[0-9]*/ /' `
1998-09-11 07:47:32 +02:00
1998-06-25 12:19:08 +02:00
install-exec-hook:
@list='$(pkglib_PROGRAMS)'; for p in $$list; do \
if test -f $(pkglibdir)/$$p; then \
echo "chmod 644 $(pkglibdir)/$$p"; \
chmod 644 $(pkglibdir)/$$p; \
fi; \
done
1997-11-18 15:06:00 +01:00