diff options
Diffstat (limited to 'cipher/Makefile.in')
-rw-r--r-- | cipher/Makefile.in | 13 |
1 files changed, 7 insertions, 6 deletions
diff --git a/cipher/Makefile.in b/cipher/Makefile.in index 91ed0a95b..d6bfab330 100644 --- a/cipher/Makefile.in +++ b/cipher/Makefile.in @@ -97,7 +97,8 @@ EXTRA_DIST = @CIPHER_EXTRA_DIST@ noinst_LIBRARIES = libcipher.a -libcipher_a_SOURCES = blowfish.c \ +libcipher_a_SOURCES = cipher.c \ + blowfish.c \ blowfish.h \ cast5.c \ cast5.h \ @@ -131,8 +132,8 @@ DEFS = @DEFS@ -I. -I$(srcdir) -I.. CPPFLAGS = @CPPFLAGS@ LDFLAGS = @LDFLAGS@ LIBS = @LIBS@ -libcipher_a_OBJECTS = blowfish.o cast5.o elgamal.o md5.o primegen.o \ -random.o rmd160.o sha1.o dsa.o md.o misc.o smallprime.o +libcipher_a_OBJECTS = cipher.o blowfish.o cast5.o elgamal.o md5.o \ +primegen.o random.o rmd160.o sha1.o dsa.o md.o misc.o smallprime.o AR = ar CFLAGS = @CFLAGS@ COMPILE = $(CC) $(DEFS) $(INCLUDES) $(CPPFLAGS) $(CFLAGS) @@ -144,9 +145,9 @@ DISTFILES = $(DIST_COMMON) $(SOURCES) $(HEADERS) $(TEXINFOS) $(EXTRA_DIST) TAR = tar GZIP = --best -DEP_FILES = .deps/blowfish.P .deps/cast5.P .deps/dsa.P .deps/elgamal.P \ -.deps/md.P .deps/md5.P .deps/misc.P .deps/primegen.P .deps/random.P \ -.deps/rmd160.P .deps/sha1.P .deps/smallprime.P +DEP_FILES = .deps/blowfish.P .deps/cast5.P .deps/cipher.P .deps/dsa.P \ +.deps/elgamal.P .deps/md.P .deps/md5.P .deps/misc.P .deps/primegen.P \ +.deps/random.P .deps/rmd160.P .deps/sha1.P .deps/smallprime.P SOURCES = $(libcipher_a_SOURCES) OBJECTS = $(libcipher_a_OBJECTS) |