src/parser/parser-expr-proto.lisp: Get `expr' to cache operators.
[sod] / Makefile.am
CommitLineData
97a9a385
MW
1### -*-makefile-*-
2###
3### Build script for SOD
4###
5### (c) 2015 Straylight/Edgeware
6###
7
8###----- Licensing notice ---------------------------------------------------
9###
e0808c47 10### This file is part of the Sensible Object Design, an object system for C.
97a9a385
MW
11###
12### SOD is free software; you can redistribute it and/or modify
13### it under the terms of the GNU General Public License as published by
14### the Free Software Foundation; either version 2 of the License, or
15### (at your option) any later version.
16###
17### SOD is distributed in the hope that it will be useful,
18### but WITHOUT ANY WARRANTY; without even the implied warranty of
19### MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
20### GNU General Public License for more details.
21###
22### You should have received a copy of the GNU General Public License
23### along with SOD; if not, write to the Free Software Foundation,
24### Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
25
b5d086c2
MW
26include $(top_srcdir)/vars.am
27
97a9a385
MW
28SUBDIRS =
29
30###--------------------------------------------------------------------------
dfc03582
MW
31### Package-configuration file.
32
33pkgconfigdir = $(libdir)/pkgconfig
34pkgconfig_DATA = sod.pc
35CLEANFILES += sod.pc
36EXTRA_DIST += sod.pc.in
37
38sod.pc: sod.pc.in Makefile
39 $(SUBST) $(srcdir)/sod.pc.in >$@.new $(SUBSTITUTIONS) && mv $@.new $@
40
41###--------------------------------------------------------------------------
97a9a385
MW
42### Subdirectories to build
43
44## The SOD translator.
45SUBDIRS += src
46
47## The runtime support library.
48SUBDIRS += lib
49
3f725f73
MW
50## The manual.
51SUBDIRS += doc
52
8d1d7d3e
MW
53## The tests and examples.
54SUBDIRS += test
55
5aeb3da7 56###--------------------------------------------------------------------------
e7de01bc
MW
57### Additional random things useful during development.
58
8aff54a1
MW
59## ASDF hacking for finding the system definitions.
60EXTRA_DIST += asdf-hack.lisp.in
61noinst_DATA += asdf-hack.lisp
62asdf-hack.lisp: asdf-hack.lisp.in Makefile
63 $(SUBST) $(srcdir)/asdf-hack.lisp.in >$@.new $(SUBSTITUTIONS) && \
64 mv $@.new $@
65
e7de01bc
MW
66## Emacs hacking for indentation.
67EXTRA_DIST += emacs-hacks.el
68
69###--------------------------------------------------------------------------
5aeb3da7
MW
70### Distribution.
71
6d1b78e0
MW
72## Release number.
73dist-hook:
74 echo $(VERSION) >$(distdir)/RELEASE
75
722aeb62
MW
76## The `STYLE' document.
77EXTRA_DIST += STYLE
78
5aeb3da7
MW
79## Additional build tools.
80EXTRA_DIST += config/auto-version
eddc126b 81EXTRA_DIST += config/confsubst
5aeb3da7 82
259726f3
MW
83###--------------------------------------------------------------------------
84### Debian.
85
86EXTRA_DIST += debian/rules debian/copyright
87EXTRA_DIST += debian/control debian/changelog
88EXTRA_DIST += debian/compat
89
90## libsod
91EXTRA_DIST += debian/libsod.install
92
93## libsod-dev
94EXTRA_DIST += debian/libsod-dev.install
95
96## sod
97EXTRA_DIST += debian/sod.install
98
3f725f73
MW
99## sod-doc
100EXTRA_DIST += debian/sod-doc.install
101
259726f3
MW
102## sod-dev
103EXTRA_DIST += debian/sod-dev.install
104
97a9a385 105###----- That's all, folks --------------------------------------------------