diff options
Diffstat (limited to 'cipher')
-rw-r--r-- | cipher/Makefile.am | 4 | ||||
-rw-r--r-- | cipher/Makefile.in | 9 |
2 files changed, 7 insertions, 6 deletions
diff --git a/cipher/Makefile.am b/cipher/Makefile.am index 40b131dd9..17952852f 100644 --- a/cipher/Makefile.am +++ b/cipher/Makefile.am @@ -21,9 +21,9 @@ cipher_SOURCES = blowfish.c \ sha1.c \ dsa.h \ dsa.c \ + rsa.c \ + rsa.h \ md.c \ smallprime.c -cipher_LIBADD = rsa.o - diff --git a/cipher/Makefile.in b/cipher/Makefile.in index 8391d9e9c..f9beb30b9 100644 --- a/cipher/Makefile.in +++ b/cipher/Makefile.in @@ -58,10 +58,10 @@ cipher_SOURCES = blowfish.c \ sha1.c \ dsa.h \ dsa.c \ + rsa.c \ + rsa.h \ md.c \ smallprime.c - -cipher_LIBADD = rsa.o mkinstalldirs = $(top_srcdir)/scripts/mkinstalldirs CONFIG_HEADER = ../config.h LIBRARIES = $(noinst_LIBRARIES) @@ -80,8 +80,9 @@ LIBS = @LIBS@ COMPILE = $(CC) -c $(DEFS) $(INCLUDES) $(CPPFLAGS) $(CFLAGS) LINK = $(CC) $(LDFLAGS) -o $@ +cipher_LIBADD = cipher_OBJECTS = blowfish.o elgamal.o gost.o md5.o primegen.o random.o \ -rmd160.o sha1.o dsa.o md.o smallprime.o +rmd160.o sha1.o dsa.o rsa.o md.o smallprime.o EXTRA_cipher_SOURCES = LIBFILES = libcipher.a AR = ar @@ -101,7 +102,7 @@ TAR = tar DEP_FILES = $(srcdir)/.deps/blowfish.P $(srcdir)/.deps/dsa.P \ $(srcdir)/.deps/elgamal.P $(srcdir)/.deps/gost.P $(srcdir)/.deps/md.P \ $(srcdir)/.deps/md5.P $(srcdir)/.deps/primegen.P \ -$(srcdir)/.deps/random.P $(srcdir)/.deps/rmd160.P \ +$(srcdir)/.deps/random.P $(srcdir)/.deps/rmd160.P $(srcdir)/.deps/rsa.P \ $(srcdir)/.deps/sha1.P $(srcdir)/.deps/smallprime.P SOURCES = $(cipher_SOURCES) OBJECTS = $(cipher_OBJECTS) |