summaryrefslogtreecommitdiff
path: root/src/Makefile.am
blob: b336fdfe7bb2e3506da97e873fb2e321821e246a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
#
# Copyright 2007-2018 Adrian Thurston <thurston@colm.net>
#

# Permission is hereby granted, free of charge, to any person obtaining a copy
# of this software and associated documentation files (the "Software"), to
# deal in the Software without restriction, including without limitation the
# rights to use, copy, modify, merge, publish, distribute, sublicense, and/or
# sell copies of the Software, and to permit persons to whom the Software is
# furnished to do so, subject to the following conditions:
# 
# The above copyright notice and this permission notice shall be included in all
# copies or substantial portions of the Software.
# 
# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
# SOFTWARE.

SUBDIRS = aapl libfsm cgil

AM_CPPFLAGS = -I$(top_srcdir)/src/aapl

AUTOMAKE_OPTIONS = subdir-objects

bin_PROGRAMS = colm
bin_SCRIPTS = colm-wrap

RUNTIME_SRC = \
	map.c pdarun.c list.c input.c stream.c debug.c \
	codevect.c pool.c string.c tree.c iter.c \
	bytecode.c program.c struct.c commit.c \
	print.c

RUNTIME_HDR = \
	config.h bytecode.h defs.h debug.h pool.h input.h \
	pdarun.h map.h type.h tree.h struct.h program.h colm.h \
	internal.h colmex.h

lib_LTLIBRARIES = libcolm.la
noinst_LIBRARIES = libprog.a

libcolm_la_SOURCES = $(RUNTIME_SRC)
libcolm_la_LDFLAGS = -release ${VERSION} -no-undefined

if LINKER_NO_UNDEFINED
libcolm_la_LDFLAGS += -Wl,--no-undefined
endif

common_CFLAGS = \
	-Wall \
	-DINCLUDEDIR='"$(includedir)"' \
	-DLIBDIR='"$(libdir)"' \
	-DABS_TOP_BUILDDIR='"$(abs_top_builddir)"' \
	-DABS_BUILDDIR='"$(abs_builddir)"'

libprog_a_SOURCES = \
	buffer.h bytecode.h colm.h debug.h dotgen.h fsmcodegen.h fsmgraph.h \
	input.h keyops.h map.h compiler.h \
	parsetree.h pcheck.h pdacodegen.h pdagraph.h pdarun.h pool.h redbuild.h \
	redfsm.h tree.h version.h global.h colm.h parser.h cstring.h \
	internal.h \
	\
	resolve.cc lookup.cc synthesis.cc parsetree.cc \
	fsmstate.cc fsmbase.cc fsmattach.cc fsmmin.cc \
	fsmgraph.cc pdagraph.cc pdabuild.cc pdacodegen.cc fsmcodegen.cc \
	redfsm.cc fsmexec.cc redbuild.cc closure.cc fsmap.cc \
	dotgen.cc pcheck.cc ctinput.cc declare.cc codegen.cc \
	exports.cc compiler.cc parser.cc reduce.cc

libprog_a_CXXFLAGS = $(common_CFLAGS)

colmincdir = $(includedir)/colm

colminc_HEADERS = $(RUNTIME_HDR)

if EXTERNAL_COLM

#
# Generate the parser using a single run with an external colm program.
#
BUILD_PARSE_3_WITH = $(EXTERNAL_COLM)/bin/colm$(EXEEXT)
WRAP_PARSE_3_WITH = $(EXTERNAL_COLM)/bin/colm-wrap
AM_CPPFLAGS += $(EXTERNAL_INC)
AM_LDFLAGS = $(EXTERNAL_LIBS)

else

noinst_PROGRAMS = bootstrap0 bootstrap1 bootstrap2

BUILD_PARSE_3_WITH = $(builddir)/bootstrap2$(EXEEXT)
WRAP_PARSE_3_WITH = $(builddir)/colm-wrap
AM_CPPFLAGS += -Iinclude
AM_LDFLAGS = -L.

#
# bootstrap0: The input program for bootstrap0 is construced using internal
# data structure constructors. It produces a program that can parse a grammar
# using limited features. No code is supported.
bootstrap0_CXXFLAGS = $(common_CFLAGS) -DCONS_INIT
bootstrap0_SOURCES = consinit.cc consinit.h main.cc version.h
bootstrap0_LDADD = libprog.a libcolm.la

#
# bootstrap1: The input program is specified using a stripped down colm syntax.
# It produces a program that can parse most colm syntax, with the exception of
# the colm syntax/semantics that is implemented in colm itself.
#

gen/bootstrap1.pack: $(builddir)/colm-wrap bootstrap0$(EXEEXT)
	mkdir -p gen
	$(builddir)/colm-wrap -w bootstrap0 -o $@ \
		-c -p gen/parse1.c -e gen/if1.h -x gen/if1.cc no-input

gen/parse1.c: gen/bootstrap1.pack
	$(builddir)/colm-wrap -o $@ $<

gen/if1.h: gen/bootstrap1.pack
	$(builddir)/colm-wrap -o $@ $<

gen/if1.cc: gen/bootstrap1.pack gen/if1.h
	$(builddir)/colm-wrap -o $@ $<


bootstrap1_CXXFLAGS = $(common_CFLAGS) -DLOAD_INIT
bootstrap1_CFLAGS = $(common_CFLAGS)
bootstrap1_SOURCES = version.h loadinit.h loadinit.cc main.cc
nodist_bootstrap1_SOURCES = gen/if1.h gen/if1.cc gen/parse1.c
bootstrap1_LDADD = libprog.a libcolm.la

#
# bootstrap2: The input program is specified using the colm grammar used in
# bootstrap1, plus some rewrite rules that implement the final parts of
# syntax/semantics. It produces a program that can parse full colm programs,
# and thus generates the sources used in the colm binary.
#

gen/bootstrap2.pack: colm.lm $(builddir)/colm-wrap bootstrap1$(EXEEXT)
	mkdir -p gen
	$(builddir)/colm-wrap -w bootstrap1 -o $@ \
		-c -p gen/parse2.c -e gen/if2.h -x gen/if2.cc $<

gen/parse2.c: gen/bootstrap2.pack
	$(builddir)/colm-wrap -o $@ $<

gen/if2.h: gen/bootstrap2.pack
	$(builddir)/colm-wrap -o $@ $<

gen/if2.cc: gen/bootstrap2.pack gen/if2.h
	$(builddir)/colm-wrap -o $@ $<

bootstrap2_CXXFLAGS = $(common_CFLAGS) -DLOAD_COLM
bootstrap2_CFLAGS = $(common_CFLAGS)
bootstrap2_SOURCES = main.cc loadboot2.cc loadfinal.h version.h
nodist_bootstrap2_SOURCES = gen/if2.h gen/if2.cc gen/parse2.c
bootstrap2_LDADD = libprog.a libcolm.la

endif

gen/bootstrap3.pack: prog.lm colm.lm $(WRAP_PARSE_3_WITH) $(BUILD_PARSE_3_WITH) 
	mkdir -p gen
	$(WRAP_PARSE_3_WITH) -w $(BUILD_PARSE_3_WITH) -o $@ \
		-c -p gen/parse3.c -e gen/if3.h -x gen/if3.cc -I$(srcdir) $<

gen/parse3.c: gen/bootstrap3.pack
	$(WRAP_PARSE_3_WITH) -o $@ $<

gen/if3.h: gen/bootstrap3.pack
	$(WRAP_PARSE_3_WITH) -o $@ $<

gen/if3.cc: gen/bootstrap3.pack gen/if3.h 
	$(WRAP_PARSE_3_WITH) -o $@ $<

colm_CXXFLAGS = $(common_CFLAGS) -DLOAD_COLM
colm_CFLAGS = $(common_CFLAGS)
colm_SOURCES = main.cc loadcolm.cc loadfinal.h version.h
nodist_colm_SOURCES = gen/if3.h gen/if3.cc gen/parse3.c
colm_LDADD = libprog.a -lcolm

# Listing if1.h in BUILT_SOURCES isn't sufficient because it depends on the
# building of bootstrap0. Automake wants to put all built sources into a list
# of files built before ANYTHING else (which includes bootstrap0). Not sure if
# it is rejected by automake or make. But in any case, it doesn't work. Fixed
# with the following additional dependency.

CLEANFILES = \
	colm-wrap \
	gen/parse1.c \
	gen/if1.h \
	gen/if1.cc \
	gen/parse2.c \
	gen/if2.h \
	gen/if2.cc \
	gen/parse3.c \
	gen/if3.h \
	gen/if3.cc \
	gen/bootstrap1.pack \
	gen/bootstrap2.pack \
	gen/bootstrap3.pack

distclean-local:
	-rm -rf include

EXTRA_DIST = prog.lm colm.lm loadfinal.cc colm-wrap.sh

colm-wrap: colm-wrap.sh
	@$(top_srcdir)/sedsubst $< $@ -w,+x $(SED_SUBST)

# We have to be explicit about these built sources. There should be a
# one-to-one relationship on the includes here as only one source code file
# needs to be aware of the loading.
loadinit.cc: gen/if1.h
loadboot2.cc: gen/if2.h
loadcolm.cc: gen/if3.h