More boring changes.
[become] / src / Makefile.am
CommitLineData
8ddbfc62 1## Process this file with `automake' to generate `Makefile.in'
2## -*-makefile-*-
3##
03820e87 4## $Id: Makefile.am,v 1.12 1999/05/04 16:36:03 mdw Exp $
8ddbfc62 5##
6## Makefile for `become'
7##
c758e654 8## (c) 1998 EBI
8ddbfc62 9##
10
11##----- Licensing notice ----------------------------------------------------
12##
13## This file is part of `become'
14##
15## `Become' is free software; you can redistribute it and/or modify
16## it under the terms of the GNU General Public License as published by
17## the Free Software Foundation; either version 2 of the License, or
18## (at your option) any later version.
19##
20## `Become' is distributed in the hope that it will be useful,
21## but WITHOUT ANY WARRANTY; without even the implied warranty of
22## MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
23## GNU General Public License for more details.
24##
25## You should have received a copy of the GNU General Public License
26## along with `become'; if not, write to the Free Software Foundation,
27## Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
28
29##----- Revision history ----------------------------------------------------
30##
31## $Log: Makefile.am,v $
03820e87 32## Revision 1.12 1999/05/04 16:36:03 mdw
33## Changes for new Automake version.
34##
35## Revision 1.11 1998/06/18 15:52:05 mdw
705e795a 36## Remove the IDEA test case.
37##
4710b942 38## Revision 1.10 1998/04/23 13:17:17 mdw
39## New program `bcquery', and `ypstuff' module added.
40##
5b175cbb 41## Revision 1.9 1998/02/20 18:12:35 mdw
42## Make the `become' program setuid root when installing.
43##
c758e654 44## Revision 1.8 1998/01/12 16:45:36 mdw
45## Fix copyright date.
46##
9e5602f0 47## Revision 1.7 1997/09/26 09:14:57 mdw
48## Merged blowfish branch into trunk.
49##
50## Revision 1.6.2.1 1997/09/26 09:07:56 mdw
51## Use the Blowfish encryption algorithm instead of IDEA. This is partly
52## because I prefer Blowfish (without any particularly strong evidence) but
53## mainly because IDEA is patented and Blowfish isn't.
54##
07d8362a 55## Revision 1.6 1997/09/18 11:17:18 mdw
56## Fix comment leaders. Don't know why this CVS keeps breaking them.
57## Could be DEC's bogus version of RCS being picked up.
58##
59## Revision 1.5 1997/09/17 10:28:25 mdw
c426c3c9 60## Remove `set.c'. No longer necessary.
0d036225 61##
07d8362a 62## Revision 1.4 1997/08/20 16:14:12 mdw
63## Build parser and lexer into the source directory. Other cosmetic
64## things.
65##
a68d9c21 66## Revision 1.3 1997/08/07 09:39:36 mdw
67## Add new source files, and remove options inappropriate for subsidiary
68## Makefiles.
69##
03f996bd 70## Revision 1.2 1997/08/04 10:24:19 mdw
8ddbfc62 71## Sources placed under CVS control.
72##
73
74##----- General setup things ------------------------------------------------
75
8ddbfc62 76## --- What to make ---
77
4710b942 78bin_PROGRAMS = become keygen bcquery
03820e87 79noinst_LIBRARIES = libbcm.a
8ddbfc62 80
81##----- Building the main code ----------------------------------------------
82
83## --- The library contains most of the interesting stuff ---
84
03820e87 85libbcm_a_SOURCES = \
8ddbfc62 86 check.c daemon.c \
87 lexer.l parser.y \
4710b942 88 class.c name.c netg.c rule.c sym.c userdb.c ypstuff.c \
8ddbfc62 89 crypt.c \
90 noise.c rand.c \
9e5602f0 91 icrypt.c blowfish.c md5.c \
8ddbfc62 92 mdwopt.c tx.c utils.c \
93 \
94 become.h \
95 check.h daemon.h \
03820e87 96 lexer.h parse.h \
4710b942 97 class.h name.h netg.h rule.h sym.h userdb.h ypstuff.h \
8ddbfc62 98 crypt.h \
99 noise.h rand.h \
9e5602f0 100 icrypt.h blowfish.h blowfish-sbox.h md5.h \
a68d9c21 101 mdwopt.h tx.h utils.h \
102 dbutils.h
8ddbfc62 103
8ddbfc62 104## --- Yaccing and lexing ---
105
03820e87 106YFLAGS = -d -v
107
108BUILT_SOURCES = parser.c parser.h lexer.c
8ddbfc62 109
03820e87 110dist-hook:
111 for i in $(BUILT_SOURCES); do \
112 [ -r $(distdir)/$$i ] || ln $$i $(distdir)/$$i; \
113 done
8ddbfc62 114
115## --- The main programs ---
116
a68d9c21 117LDADD = libbcm.a @LEXLIB@
0d036225 118
8ddbfc62 119become_SOURCES = become.c
120keygen_SOURCES = keygen.c
4710b942 121bcquery_SOURCES = bcquery.c
8ddbfc62 122
0d036225 123become_DEPENDENCIES = libbcm.a
124keygen_DEPENDENCIES = libbcm.a
4710b942 125bcquery_DEPENDENCIES = libbcm.a
8ddbfc62 126
5b175cbb 127##----- Become must be setuid root ------------------------------------------
128
03820e87 129install-exec-hook:
5b175cbb 130 become_prog=${bindir}/`echo become|sed '${transform}'`; \
131 { chown root $${become_prog} && \
132 chmod 4755 $${become_prog}; } || \
133 { echo ">>>>>"; \
134 echo ">>>>> $${become_prog} must be installed setuid-root"; \
135 echo ">>>>>"; \
136 }
137
8ddbfc62 138##----- Testing -------------------------------------------------------------
139
140## --- The test programs ---
141
142TESTS = \
a68d9c21 143 name-test netg-test sym-test userdb-test \
8ddbfc62 144 crypt-test \
145 blowfish-test idea-test md5-test
146
147## --- How to build a test rig ---
148
149SUFFIXES = .tro
150.c.tro:
151 $(COMPILE) -DTEST_RIG $< -o $@
152
153## --- Now build all the test programs ---
154##
155## This is a right pain. However, `automake' provides no way of automating
156## this. (A drop-out to raw perl would be nice, for example.)
157
158name-test: name.tro libbcm.a
159 $(LINK) name.tro libbcm.a $(LIBS)
160sym-test: sym.tro libbcm.a
161 $(LINK) sym.tro libbcm.a $(LIBS)
162userdb-test: userdb.tro libbcm.a
163 $(LINK) userdb.tro libbcm.a $(LIBS)
164crypt-test: crypt.tro libbcm.a
165 $(LINK) crypt.tro libbcm.a $(LIBS)
166blowfish-test: blowfish.tro libbcm.a
167 $(LINK) blowfish.tro libbcm.a $(LIBS)
8ddbfc62 168md5-test: md5.tro libbcm.a
169 $(LINK) md5.tro libbcm.a $(LIBS)
170netg-test: netg.tro libbcm.a
171 $(LINK) netg.tro libbcm.a
172
0d036225 173CLEANFILES = *.tro y.output
174
8ddbfc62 175##----- That's all, folks ---------------------------------------------------