summaryrefslogtreecommitdiffstats
path: root/Makefile
blob: e25df5dba0430d149fce572c362c4ef132835b87 (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
# Copyright 2009
# Kaz Kylheku <kkylheku@gmail.com>
# Vancouver, Canada
# All rights reserved.
#
# BSD License:
#
# Redistribution and use in source and binary forms, with or without
# modification, are permitted provided that the following conditions
# are met:
#
#   1. Redistributions of source code must retain the above copyright
#      notice, this list of conditions and the following disclaimer.
#   2. Redistributions in binary form must reproduce the above copyright
#      notice, this list of conditions and the following disclaimer in
#      the documentation and/or other materials provided with the
#      distribution.
#   3. The name of the author may not be used to endorse or promote
#      products derived from this software without specific prior
#      written permission.
#
# THIS SOFTWARE IS PROVIDED ``AS IS'' AND WITHOUT ANY EXPRESS OR
# IMPLIED WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED
# WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE.

# Test data in the tests/ directory is in the public domain,
# unless it contains notices to the contrary.

include config.make

CFLAGS := -I. -I$(top_srcdir) $(LANG_FLAGS) $(DIAG_FLAGS) \
          $(OPT_FLAGS) $(DBG_FLAGS) $(PLATFORM_FLAGS)
CFLAGS := $(filter-out $(REMOVE_FLAGS),$(CFLAGS))

OBJS := txr.o lex.yy.o y.tab.o match.o lib.o regex.o gc.o unwind.o stream.o
OBJS += hash.o utf8.o

PROG := ./txr

$(PROG): $(OBJS)
        $(CC) $(CFLAGS) -o $@ $^ $(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

.PHONY: rebuild
rebuild: clean $(PROG)

.PHONY: clean
clean:
        rm -f $(PROG) $(OBJS) \
          y.tab.c lex.yy.c y.tab.h y.output $(TESTS:.ok=.out)

.PHONY: distclean
distclean: clean
        rm -f config.h config.make config.log

.PHONY: depend
depend:
        $(PROG) $(top_srcdir)/depend.txr > $(top_srcdir)/dep.mk

TESTS := $(patsubst $(top_srcdir)/%.txr,./%.ok,\
                    $(shell find $(top_srcdir)/tests -name '*.txr' | sort))

.PHONY: tests
tests: $(PROG) $(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/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 $(^:.txr=.expected) $(@:.ok=.out)

%.expected: %.txr
        $(PROG) $(TXR_OPTS) $^ $(TXR_ARGS) > $@

.PHONY: install
install: $(PROG)
        mkdir -p $(install_prefix)$(bindir)
        mkdir -p $(install_prefix)$(datadir)
        mkdir -p $(install_prefix)$(mandir)/man1
        cp txr $(install_prefix)$(bindir)
        cp $(top_srcdir)/txr.1 $(install_prefix)$(mandir)/man1

config.make config.h:
        @echo "$@ missing: you didn't run ./configure"
        @exit 1

#
# Special targets used by ./configure
#

conftest: conftest.c
        $(CC) $(CFLAGS) -o $@ $^

conftest2: conftest1.c conftest2.c
        $(CC) $(CFLAGS) -o $@ $^

conftest.syms: conftest.o
        $(NM) -t o -P $^ > $@

.PHONY: conftest.yacc
conftest.yacc:
        @echo $(YACC)