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
|
include config.make
CFLAGS := -I. -I$(top_srcdir) $(LANG_FLAGS) $(DIAG_FLAGS) \
$(OPT_FLAGS) $(DBG_FLAGS) $(PLATFORM_FLAGS) $(EXTRA_FLAGS)
CFLAGS += -Impi-$(mpi_version)
CFLAGS := $(filter-out $(REMOVE_FLAGS),$(CFLAGS))
ifneq ($(subst g++,@,$(notdir $(CC))),$(notdir $(CC)))
CFLAGS := $(filter-out -Wmissing-prototypes -Wstrict-prototypes,$(CFLAGS))
endif
OBJS := txr.o lex.yy.o y.tab.o match.o lib.o regex.o gc.o unwind.o stream.o
OBJS += arith.o hash.o utf8.o filter.o eval.o rand.o
OBJS-$(debug_support) := debug.o
MPI_OBJ_BASE=mpi.o mplogic.o
MPI_OBJS := $(addprefix mpi-$(mpi_version)/,$(MPI_OBJ_BASE))
OBJS += $(MPI_OBJS)
PROG := ./txr
$(PROG): $(OBJS) $(OBJS-y)
$(CC) $(CFLAGS) -o $@ $^ -lm $(LEXLIB)
VPATH := $(top_srcdir)
-include $(top_srcdir)/dep.mk
lex.yy.c: parser.l
$(LEX) $(LEX_DBG_FLAGS) $<
y.tab.c y.tab.h: parser.y
if $(YACC) -v -d $< ; then true ; else rm $@ ; false ; fi
y.tab.o: CFLAGS += -Dlint
$(MPI_OBJS): CFLAGS += -DXMALLOC=chk_malloc -DXREALLOC=chk_realloc
$(MPI_OBJS): CFLAGS += -DXCALLOC=chk_calloc -DXFREE=free
.PHONY: rebuild
rebuild: clean repatch $(PROG)
.PHONY: clean
clean:
rm -f $(PROG) $(OBJS) $(OBJS-y) \
y.tab.c lex.yy.c y.tab.h y.output $(TESTS:.ok=.out)
.PHONY: repatch
repatch:
cd mpi-$(mpi_version); quilt pop -af
cd mpi-$(mpi_version); quilt push -a
.PHONY: distclean
distclean: clean
rm -f config.h config.make config.log
rm -rf mpi-$(mpi_version)
.PHONY: depend
depend:
txr $(top_srcdir)/depend.txr $(OBJS) $(OBJS-y) > $(top_srcdir)/dep.mk
TESTS := $(patsubst $(top_srcdir)/%.txr,./%.ok,\
$(shell find $(top_srcdir)/tests -name '*.txr' | sort))
.PHONY: tests $(TEST)
tests: $(TESTS)
@echo "** tests passed!"
tests/001/%: TXR_ARGS := $(top_srcdir)/tests/001/data
tests/002/%: TXR_OPTS := -DTESTDIR=$(top_srcdir)/tests/002
tests/004/%: TXR_ARGS := -a 123 -b -c
tests/005/%: TXR_ARGS := $(top_srcdir)/tests/005/data
tests/006/%: TXR_ARGS := $(top_srcdir)/tests/006/data
tests/008/tokenize.ok: TXR_ARGS := $(top_srcdir)/tests/008/data
tests/008/configfile.ok: TXR_ARGS := $(top_srcdir)/tests/008/configfile
tests/008/students.ok: TXR_ARGS := $(top_srcdir)/tests/008/students.xml
tests/008/soundex.ok: TXR_ARGS := soundex sowndex lloyd lee jackson robert
tests/009/json.ok: TXR_ARGS = $(addprefix $(top_srcdir)/tests/009/,webapp.json pass1.json)
tests/009/json.ok: TXR_OPTS := -l
tests/010/align-columns.ok: TXR_ARGS := $(top_srcdir)/tests/010/align-columns.dat
tests/002/%: TXR_SCRIPT_ON_CMDLINE := y
%.ok: %.txr
mkdir -p $(dir $@)
$(if $(TXR_SCRIPT_ON_CMDLINE),\
$(PROG) $(TXR_DBG_OPTS) $(TXR_OPTS) -c "$$(cat $^)" \
$(TXR_ARGS) > $(@:.ok=.out),\
$(PROG) $(TXR_DBG_OPTS) $(TXR_OPTS) $^ $(TXR_ARGS) > $(@:.ok=.out))
diff -u $(^:.txr=.expected) $(@:.ok=.out)
%.expected: %.txr
$(PROG) $(TXR_OPTS) $^ $(TXR_ARGS) > $@
#
# Installation macro.
#
# $1 - chmod perms
# $2 - source file
# $3 - dest directory
#
define INSTALL
mkdir -p $(3)
cp -f $(2) $(3)
chmod $(1) $(3)/$(notdir $(2))
touch -r $(2) $(3)/$(notdir $(2))
endef
.PHONY: install
install: $(PROG)
$(call INSTALL,0755,txr,$(DESTDIR)$(bindir))
$(call INSTALL,0444,$(top_srcdir)/txr.1,$(DESTDIR)$(mandir)/man1)
#
# Install the tests as well as the script to run them
#
install-tests:
mkdir -p $(DESTDIR)$(datadir)
(cd $(top_srcdir) ; \
find tests -name '*.out' -prune -o -print | cpio -co) \
| (cd $(DESTDIR)$(datadir) ; cpio -idu)
(echo "
$(call INSTALL,0755,run.sh,$(DESTDIR)$(datadir)/tests)
txr-manpage.html: txr.1 genman.txr
man2html $< | $(PROG) genman.txr - > $@
config.make config.h:
@echo "$@ missing: you didn't run ./configure"
@exit 1
conftest: conftest.c
$(CC) $(CFLAGS) -o $@ $^
conftest2: conftest1.c conftest2.c
$(CC) $(CFLAGS) -o $@ $^
conftest.syms: conftest.o
$(NM) -n -t o -P $^ > $@
.PHONY: conftest.yacc
conftest.yacc:
@echo $(YACC)
.PHONY: conftest.ccver
conftest.ccver:
@$(CC) --version
|