mirror of
git://git.gnupg.org/gnupg.git
synced 2024-11-04 20:38:50 +01:00
36 lines
600 B
Makefile
36 lines
600 B
Makefile
## Process this file with automake to produce Makefile.in
|
|
|
|
INCLUDES = -I$(top_srcdir)/include -I$(top_srcdir)/intl -I../intl
|
|
EXTRA_DIST = @CIPHER_EXTRA_DIST@
|
|
|
|
noinst_LIBRARIES = libcipher.a
|
|
|
|
|
|
libcipher_a_SOURCES = cipher.c \
|
|
blowfish.c \
|
|
blowfish.h \
|
|
cast5.c \
|
|
cast5.h \
|
|
elgamal.c \
|
|
elgamal.h \
|
|
md5.c \
|
|
md5.h \
|
|
primegen.c \
|
|
random.h \
|
|
random.c \
|
|
rmd.h \
|
|
rmd160.c \
|
|
sha1.h \
|
|
sha1.c \
|
|
dsa.h \
|
|
dsa.c \
|
|
md.c \
|
|
md.h \
|
|
misc.c \
|
|
smallprime.c
|
|
|
|
libcipher_a_DEPENDENCIES = @CIPHER_EXTRA_OBJS@
|
|
libcipher_a_LIBADD = @CIPHER_EXTRA_OBJS@
|
|
|
|
|