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