Distribute GPL notice.
[u/mdw/catacomb] / Makefile.m4
CommitLineData
d03ab969 1## -*-makefile-*-
2##
9183ab7b 3## $Id: Makefile.m4,v 1.2 1999/10/23 12:55:35 mdw Exp $
d03ab969 4##
5## Makefile for Catacomb
6##
7## (c) 1999 Straylight/Edgeware
8##
9
10##----- Licensing notice ----------------------------------------------------
11##
12## This file is part of Catacomb.
13##
14## Catacomb is free software; you can redistribute it and/or modify
15## it under the terms of the GNU Library General Public License as
16## published by the Free Software Foundation; either version 2 of the
17## License, or (at your option) any later version.
18##
19## Catacomb is distributed in the hope that it will be useful,
20## but WITHOUT ANY WARRANTY; without even the implied warranty of
21## MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
22## GNU Library General Public License for more details.
23##
24## You should have received a copy of the GNU Library General Public
25## License along with Catacomb; if not, write to the Free
26## Software Foundation, Inc., 59 Temple Place - Suite 330, Boston,
27## MA 02111-1307, USA.
28
29##----- Revision history ----------------------------------------------------
30##
31## $Log: Makefile.m4,v $
9183ab7b 32## Revision 1.2 1999/10/23 12:55:35 mdw
33## The `CVS' directory can't be hardlinked. Don't worry about this
34## overmuch.
d03ab969 35##
9183ab7b 36## Install headers in the right directory.
37##
38## Revision 1.2 1999/10/23 12:55:35 mdw
d03ab969 39## The `CVS' directory can't be hardlinked. Don't worry about this
40## overmuch.
41##
42##
43
44AUTOMAKE_OPTIONS = foreign
45
46archincludedir = $(libdir)/catacomb/include
47
48## --- List handling macros ---
49##
50## List handling is nice, usually. Unfortunately, I based this design on
51## TeX list macros rather than anything sensible...
52
53define(`_', `define(`_item', $1)define(`_item_2', $2)emit`'')
54define(`adorn', `pushdef(`emit', `$1`'_item`'$3')$2`'popdef(`emit')')
55define(`join',
56`pushdef(`emit', `adorn(``_(''_item`$2', `$3', ``)'')`'')$1`'popdef(`emit')')
57define(`addsuffix', `adorn(`', `$1', `$2')')
58define(`lit', `adorn(`', `$1', `')')
59define(`nl', `
60')
61
62define(`allwithsuffix',
63`addsuffix(`$1', `$3') addsuffix(`$2', `$3') dnl
64addsuffix(join(`$1', `-', `$2'), `$3')')
65
66## --- Autogenerated source files ---
67
68define(`ciphers', `_(des) _(des3) _(blowfish) _(idea) _(rc5)')
69define(`cipher_modes', `_(ecb) _(cbc) _(cfb) _(ofb)')
70
71define(`hashes', `_(md5) _(md4) _(rmd160) _(sha)')
72define(`hash_modes', `_(hmac)')
73
74MODES = \
75 adorn(`$(srcdir)/', join(`ciphers', `-', `cipher_modes'), `.c') \
76 adorn(`$(srcdir)/', join(`ciphers', `-', `cipher_modes'), `.h') \
77 adorn(`$(srcdir)/', join(`hashes', `-', `hash_modes'), `.c') \
78 adorn(`$(srcdir)/', join(`hashes', `-', `hash_modes'), `.h')
79
80$(MODES): $(srcdir)/genmodes
81
82archinclude_HEADERS = mptypes.h
83
84mptypes.h: mptypes
85 des_sp.h \
86 ./mptypes >mptypes.h
87
88BUILT_SOURCES = \
89 getdate.c \
90 addsuffix(join(`ciphers', `-', `cipher_modes'), `.c') \
91 addsuffix(join(`ciphers', `-', `cipher_modes'), `.h') \
92INCLUDES = -I$(srcdir)/..
93 addsuffix(join(`hashes', `-', `hash_modes'), `.c') \
94 addsuffix(join(`hashes', `-', `hash_modes'), `.h')
95include_HEADERS = \
96libcatacomb_la_LDFLAGS = -version-info 0:4:0
97## Middle number is the patchlevel. Final number is the minor version. The
98## difference between the first and last numbers is major version.
99
100define(`emit', `$1.h ')
101pkginclude_HEADERS = \
102 paranoia.h \
103 blkc.h hash.h \
104 mpx.h mpw.h mpscan.h mparena.h mp.h mptext.h mpmont.h \
105 ptab.h pgen.h rabin.h \
106 dsa.h dh.h \
107 allwithsuffix(`ciphers', `cipher_modes', `.h') \
108libcatacomb_a_SOURCES = \
109
110define(`emit', `$1.c ')
111libcatacomb_la_SOURCES = \
112 des-base.c des-base.h des_sp.h bf_ikey.h daftstory.h \
113 ptab.c pgen.c rabin.c \
114 dsa-sign.c dsa-verify.c dsa-gen.c \
115 dh-prime.c \
116 addsuffix(join(`ciphers', `-', `cipher_modes'), `.c') \
117noinst_PROGRAMS = des-mktab
118LDADD = libcatacomb.a ../mLib/libmLib.a
119## --- Utility programs ---
120noinst_PROGRAMS = des-mktab mptypes
121LDADD = libcatacomb.a
122bin_SCRIPTS = catacomb-config
123noinst_PROGRAMS = des-mktab genprimes mptypes
124LDADD = libcatacomb.la
125genprimes_SOURCES = genprimes.c
126genprimes_LDADD =
127
128mptypes_SOURCES = mptypes.c
129mptypes_LDADD =
130
131## --- Documentation ---
132
133man_MANS = key.1 keyring.5
134
135## --- Other handy definitions ---
9183ab7b 136
d03ab969 137EXTRA_DIST = Makefile.m4 genmodes $(man_MANS)
138
139dist-hook:
140 @ln getdate.c $(distdir) || ln $(srcdir)/getdate.c $(distdir) || true
141 @mkdir $(distdir)/tests
142 @ln $(srcdir)/tests/* $(distdir)/tests || true
143 @rm -f $(distdir)/tests/*~
144TESTS = \
145 rc4.t \
146 addsuffix(join(`ciphers', `-', `cipher_modes'), `.t') \
147 addsuffix(join(`hashes', `-', `hash_modes'), `.t') \
148 addsuffix(`ciphers', `.t') addsuffix(`hashes', `.t')
149 $(COMPILE) -DTEST_RIG -DSRCDIR=\"$(srcdir)\" \
150 $(srcdir)/$1.c libcatacomb.a ../mLib/libmLib.a -o $1.t')
151
152`$1.t: $1.c libcatacomb.a
153 $(COMPILE) -DTEST_RIG -DSRCDIR=\"$(srcdir)\" $(srcdir)/$1.c libcatacomb.a $(LIBS) -o $1.t')
154 $1.t)dnl
155$1.t: $1.c libcatacomb.la
156
157adorn(`nl`'CTESTRIG(', `ciphers', `)')
158adorn(`nl`'CTESTRIG(', `hashes', `)')
159CLEANFILES = *.t
160adorn(`nl`'CTESTRIG(', join(`hashes', `-', `hash_modes'), `)')
161CTESTRIG(dsa-verify)
162CLEANFILES = *.t mptypes.h
163TESTS = testprogs
164
165CLEANFILES = *.t mptypes.h des_sp.h ptab.c ptab.h
166
167## --- Makefile building (haha!) ---
168
169$(srcdir)/Makefile.am: $(srcdir)/Makefile.m4
170 m4 $(srcdir)/Makefile.m4 >$(srcdir)/Makefile.am
171 $(MODES) $(srcdir)/des_sp.h \
172 $(srcdir)/getdate.c getdate.c
173 $(srcdir)/Makefile.am \
174 $(srcdir)/getdate.c getdate.c \
175 $(MODES)
176
177##----- That's all, folks ---------------------------------------------------