1997-11-18 15:06:00 +01:00
|
|
|
## Process this file with automake to produce Makefile.in
|
|
|
|
|
1999-02-10 17:22:40 +01: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
|
1999-01-09 16:06:59 +01:00
|
|
|
|
1999-02-10 17:22:40 +01:00
|
|
|
# The configure script greps the module names from the following lines.
|
|
|
|
# You must also add all these names to EXTRA_PROGRAMS some lines below
|
|
|
|
# and EXTRA_foo_SOURCES entries.
|
|
|
|
# Hmmm is there a more easy way to do this? (EXTRA_PROGRAMS
|
|
|
|
# might also list programs which are not modules)
|
1999-02-22 20:08:46 +01:00
|
|
|
# MODULES: rndunix rndlinux rndegd
|
1999-02-10 17:22:40 +01:00
|
|
|
# MODULES: sha1 rmd160 md5 tiger
|
1999-02-22 20:08:46 +01:00
|
|
|
EXTRA_PROGRAMS = rndunix rndlinux rndegd \
|
1999-04-07 20:58:34 +02:00
|
|
|
sha1 rmd160 md5 tiger
|
1999-02-10 17:22:40 +01:00
|
|
|
|
|
|
|
EXTRA_rndlinux_SOURCES = rndlinux.c
|
|
|
|
EXTRA_rndunix_SOURCES = rndunix.c
|
1999-02-22 20:08:46 +01:00
|
|
|
EXTRA_rndegd_SOURCES = rndegd.c
|
1999-02-10 17:22:40 +01:00
|
|
|
EXTRA_md5_SOURCES = md5.c
|
|
|
|
EXTRA_rmd160_SOURCES = rmd160.c
|
|
|
|
EXTRA_sha1_SOURCES = sha1.c
|
|
|
|
EXTRA_tiger_SOURCES = tiger.c
|
|
|
|
|
|
|
|
|
1998-06-25 12:19:08 +02:00
|
|
|
if ENABLE_GNUPG_EXTENSIONS
|
1999-02-10 17:22:40 +01:00
|
|
|
pkglib_PROGRAMS = @DYNAMIC_CIPHER_MODS@
|
1998-06-25 12:19:08 +02:00
|
|
|
else
|
|
|
|
pkglib_PROGRAMS =
|
|
|
|
endif
|
1997-11-18 15:06:00 +01:00
|
|
|
|
1998-10-16 18:00:17 +02:00
|
|
|
|
1999-01-09 16:06:59 +01:00
|
|
|
DYNLINK_MOD_CFLAGS = -DIS_MODULE @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 \
|
1999-04-07 20:58:34 +02:00
|
|
|
twofish.c \
|
|
|
|
twofish.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 \
|
|
|
|
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 \
|
1997-11-18 15:06:00 +01:00
|
|
|
rmd.h \
|
1997-12-12 13:03:58 +01:00
|
|
|
dsa.h \
|
|
|
|
dsa.c \
|
1998-06-13 19:00:02 +02:00
|
|
|
g10c.c \
|
1999-02-10 17:22:40 +01:00
|
|
|
smallprime.c \
|
|
|
|
construct.c
|
1997-11-18 15:06:00 +01:00
|
|
|
|
1999-02-10 17:22:40 +01:00
|
|
|
# configure creates the constructor file
|
|
|
|
BUILT_SOURCES = construct.c
|
1999-01-09 16:06:59 +01:00
|
|
|
|
1998-06-25 12:19:08 +02:00
|
|
|
|
1999-02-10 17:22:40 +01:00
|
|
|
libcipher_a_DEPENDENCIES = @STATIC_CIPHER_OBJS@
|
|
|
|
libcipher_a_LIBADD = @STATIC_CIPHER_OBJS@
|
|
|
|
|
1999-01-09 16:06:59 +01:00
|
|
|
|
1999-02-10 17:22:40 +01:00
|
|
|
# If I remember it correct, automake 1.4 has a feature to set
|
|
|
|
# fooFLAGS depending on the program. So we should check it out.
|
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 | \
|
1999-02-10 17:22:40 +01:00
|
|
|
sed -e 's/-O[2-9]*/-O1/g' `
|
|
|
|
|
|
|
|
tiger.o: $(srcdir)/tiger.c
|
1999-04-07 20:58:34 +02:00
|
|
|
`echo $(COMPILE) -c $(srcdir)/tiger.c | sed -e 's/-O[2-9]*/-O1/g' `
|
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 | \
|
1999-02-10 17:22:40 +01:00
|
|
|
sed -e 's/-O[0-9]*/ /g' `
|
|
|
|
|
|
|
|
twofish.o: $(srcdir)/twofish.c
|
1999-04-07 20:58:34 +02:00
|
|
|
`echo $(COMPILE) -c $(srcdir)/twofish.c | sed -e 's/-O[0-9]*/ /g' `
|
1998-09-11 07:47:32 +02:00
|
|
|
|
1998-06-25 12:19:08 +02:00
|
|
|
|
1998-11-25 12:52:41 +01:00
|
|
|
rndunix: $(srcdir)/rndunix.c
|
|
|
|
$(COMPILE) $(DYNLINK_MOD_CFLAGS) -o rndunix $(srcdir)/rndunix.c
|
|
|
|
|
1998-11-27 12:42:49 +01:00
|
|
|
rndlinux: $(srcdir)/rndlinux.c
|
|
|
|
$(COMPILE) $(DYNLINK_MOD_CFLAGS) -o rndlinux $(srcdir)/rndlinux.c
|
|
|
|
|
1999-02-22 20:08:46 +01:00
|
|
|
rndegd: $(srcdir)/rndegd.c
|
|
|
|
$(COMPILE) $(DYNLINK_MOD_CFLAGS) -o rndegd $(srcdir)/rndegd.c
|
|
|
|
|
1998-11-25 12:52:41 +01: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
|
|
|
|