Major overhaul. Now uses DSA signatures rather than the bogus symmetric
[become] / src / Makefile.am
index aaaf90a..57a4751 100644 (file)
@@ -1,7 +1,7 @@
 ## Process this file with `automake' to generate `Makefile.in'
 ## -*-makefile-*-
 ##
-## $Id: Makefile.am,v 1.13 1999/05/04 16:50:59 mdw Exp $
+## $Id: Makefile.am,v 1.14 2003/10/12 00:14:55 mdw Exp $
 ##
 ## Makefile for `become'
 ##
 ##----- Revision history ----------------------------------------------------
 ##
 ## $Log: Makefile.am,v $
+## Revision 1.14  2003/10/12 00:14:55  mdw
+## Major overhaul.  Now uses DSA signatures rather than the bogus symmetric
+## encrypt-and-hope thing.  Integrated with mLib and Catacomb.
+##
 ## Revision 1.13  1999/05/04 16:50:59  mdw
 ## Change library to `libbecome.a', for aesthetic reasons.
 ##
@@ -78,7 +82,7 @@
 
 ## --- What to make ---
 
-bin_PROGRAMS = become keygen bcquery
+bin_PROGRAMS = become bcquery
 noinst_LIBRARIES = libbecome.a
 
 ##----- Building the main code ----------------------------------------------
@@ -88,21 +92,12 @@ noinst_LIBRARIES = libbecome.a
 libbecome_a_SOURCES = \
        check.c daemon.c \
        lexer.l parser.y \
-       class.c name.c netg.c rule.c sym.c userdb.c ypstuff.c \
-       crypt.c \
-       noise.c rand.c \
-       icrypt.c blowfish.c md5.c \
-       mdwopt.c tx.c utils.c \
+       class.c name.c netg.c rule.c userdb.c ypstuff.c \
        \
        become.h \
        check.h daemon.h \
        lexer.h parse.h \
-       class.h name.h netg.h rule.h sym.h userdb.h ypstuff.h \
-       crypt.h \
-       noise.h rand.h \
-       icrypt.h blowfish.h blowfish-sbox.h md5.h \
-       mdwopt.h tx.h utils.h \
-       dbutils.h
+       class.h name.h netg.h rule.h userdb.h ypstuff.h
 
 BUILT_SOURCES = \
        parser.c parser.h lexer.c
@@ -121,11 +116,9 @@ dist-hook:
 LDADD = libbecome.a @LEXLIB@
 
 become_SOURCES = become.c
-keygen_SOURCES = keygen.c
 bcquery_SOURCES = bcquery.c
 
 become_DEPENDENCIES = libbecome.a
-keygen_DEPENDENCIES = libbecome.a
 bcquery_DEPENDENCIES = libbecome.a
 
 ##----- Become must be setuid root ------------------------------------------