Replaced by Blowfish.
[become] / src / Makefile.am
... / ...
CommitLineData
1## Process this file with `automake' to generate `Makefile.in'
2## -*-makefile-*-
3##
4## $Id: Makefile.am,v 1.6.2.1 1997/09/26 09:07:56 mdw Exp $
5##
6## Makefile for `become'
7##
8## (c) 1997 EBI
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 $
32## Revision 1.6.2.1 1997/09/26 09:07:56 mdw
33## Use the Blowfish encryption algorithm instead of IDEA. This is partly
34## because I prefer Blowfish (without any particularly strong evidence) but
35## mainly because IDEA is patented and Blowfish isn't.
36##
37## Revision 1.6 1997/09/18 11:17:18 mdw
38## Fix comment leaders. Don't know why this CVS keeps breaking them.
39## Could be DEC's bogus version of RCS being picked up.
40##
41## Revision 1.5 1997/09/17 10:28:25 mdw
42## Remove `set.c'. No longer necessary.
43##
44## Revision 1.4 1997/08/20 16:14:12 mdw
45## Build parser and lexer into the source directory. Other cosmetic
46## things.
47##
48## Revision 1.3 1997/08/07 09:39:36 mdw
49## Add new source files, and remove options inappropriate for subsidiary
50## Makefiles.
51##
52## Revision 1.2 1997/08/04 10:24:19 mdw
53## Sources placed under CVS control.
54##
55
56##----- General setup things ------------------------------------------------
57
58## --- What to make ---
59
60bin_PROGRAMS = become keygen
61noinst_LIBRARIES = bcm
62
63##----- Building the main code ----------------------------------------------
64
65## --- The library contains most of the interesting stuff ---
66
67bcm_SOURCES = \
68 check.c daemon.c \
69 lexer.l parser.y \
70 class.c name.c netg.c rule.c sym.c userdb.c \
71 crypt.c \
72 noise.c rand.c \
73 icrypt.c blowfish.c md5.c \
74 mdwopt.c tx.c utils.c \
75 \
76 become.h \
77 check.h daemon.h \
78 lexer.h parser.h \
79 class.h name.h netg.h rule.h sym.h userdb.h \
80 crypt.h \
81 noise.h rand.h \
82 icrypt.h blowfish.h blowfish-sbox.h md5.h \
83 mdwopt.h tx.h utils.h \
84 dbutils.h
85
86BUILT_SOURCES = \
87 parser.c lexer.c parser.tab.h
88
89## --- Yaccing and lexing ---
90
91$(srcdir)/parser.c $(srcdir)/parser.tab.h: $(srcdir)/parser.y
92 @YACC@ -d -v $(srcdir)/parser.y
93 mv y.tab.c $(srcdir)/parser.c
94 mv y.tab.h $(srcdir)/parser.tab.h
95
96$(srcdir)/lexer.c: $(srcdir)/lexer.l
97 @LEX@ $(srcdir)/lexer.l
98 mv lex.yy.c $(srcdir)/lexer.c
99
100## --- The main programs ---
101
102LDADD = libbcm.a @LEXLIB@
103
104become_SOURCES = become.c
105keygen_SOURCES = keygen.c
106
107become_DEPENDENCIES = libbcm.a
108keygen_DEPENDENCIES = libbcm.a
109
110##----- Testing -------------------------------------------------------------
111
112## --- The test programs ---
113
114TESTS = \
115 name-test netg-test sym-test userdb-test \
116 crypt-test \
117 blowfish-test idea-test md5-test
118
119## --- How to build a test rig ---
120
121SUFFIXES = .tro
122.c.tro:
123 $(COMPILE) -DTEST_RIG $< -o $@
124
125## --- Now build all the test programs ---
126##
127## This is a right pain. However, `automake' provides no way of automating
128## this. (A drop-out to raw perl would be nice, for example.)
129
130name-test: name.tro libbcm.a
131 $(LINK) name.tro libbcm.a $(LIBS)
132sym-test: sym.tro libbcm.a
133 $(LINK) sym.tro libbcm.a $(LIBS)
134userdb-test: userdb.tro libbcm.a
135 $(LINK) userdb.tro libbcm.a $(LIBS)
136crypt-test: crypt.tro libbcm.a
137 $(LINK) crypt.tro libbcm.a $(LIBS)
138blowfish-test: blowfish.tro libbcm.a
139 $(LINK) blowfish.tro libbcm.a $(LIBS)
140idea-test: idea.tro libbcm.a
141 $(LINK) idea.tro libbcm.a $(LIBS)
142md5-test: md5.tro libbcm.a
143 $(LINK) md5.tro libbcm.a $(LIBS)
144netg-test: netg.tro libbcm.a
145 $(LINK) netg.tro libbcm.a
146
147CLEANFILES = *.tro y.output
148
149##----- That's all, folks ---------------------------------------------------