From: mdw Date: Thu, 23 Apr 1998 13:17:17 +0000 (+0000) Subject: New program `bcquery', and `ypstuff' module added. X-Git-Tag: 1.3.3~49 X-Git-Url: https://git.distorted.org.uk/~mdw/become/commitdiff_plain/4710b942ec00e97533a074fdf62a523f969c2721 New program `bcquery', and `ypstuff' module added. --- diff --git a/src/Makefile.am b/src/Makefile.am index effb91c..99e9583 100644 --- a/src/Makefile.am +++ b/src/Makefile.am @@ -1,7 +1,7 @@ ## Process this file with `automake' to generate `Makefile.in' ## -*-makefile-*- ## -## $Id: Makefile.am,v 1.9 1998/02/20 18:12:35 mdw Exp $ +## $Id: Makefile.am,v 1.10 1998/04/23 13:17:17 mdw Exp $ ## ## Makefile for `become' ## @@ -29,6 +29,9 @@ ##----- Revision history ---------------------------------------------------- ## ## $Log: Makefile.am,v $ +## Revision 1.10 1998/04/23 13:17:17 mdw +## New program `bcquery', and `ypstuff' module added. +## ## Revision 1.9 1998/02/20 18:12:35 mdw ## Make the `become' program setuid root when installing. ## @@ -66,7 +69,7 @@ ## --- What to make --- -bin_PROGRAMS = become keygen +bin_PROGRAMS = become keygen bcquery noinst_LIBRARIES = bcm ##----- Building the main code ---------------------------------------------- @@ -76,7 +79,7 @@ noinst_LIBRARIES = bcm bcm_SOURCES = \ check.c daemon.c \ lexer.l parser.y \ - class.c name.c netg.c rule.c sym.c userdb.c \ + 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 \ @@ -85,7 +88,7 @@ bcm_SOURCES = \ become.h \ check.h daemon.h \ lexer.h parser.h \ - class.h name.h netg.h rule.h sym.h userdb.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 \ @@ -112,9 +115,11 @@ LDADD = libbcm.a @LEXLIB@ become_SOURCES = become.c keygen_SOURCES = keygen.c +bcquery_SOURCES = bcquery.c become_DEPENDENCIES = libbcm.a keygen_DEPENDENCIES = libbcm.a +bcquery_DEPENDENCIES = libbcm.a ##----- Become must be setuid root ------------------------------------------