File: Makefile

package info (click to toggle)
intercal 29%3A0.29-2
  • links: PTS
  • area: main
  • in suites: wheezy
  • size: 5,328 kB
  • sloc: ansic: 9,047; sh: 1,277; yacc: 1,079; lex: 518; lisp: 463; makefile: 419; perl: 304
file content (158 lines) | stat: -rw-r--r-- 5,141 bytes parent folder | download | duplicates (2)
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
#
# Torture-tester for the INTERCAL compiler
#
# Type 'make' to test-compile the pit programs and run a regression check

ICK = ICKINCLUDEDIR=../src ICKCSKELDIR=../src ICKSYSDIR=lib ICKLIBDIR=.. ../ick -b
PIT = .

BASE2SOURCES = \
	$(PIT)/beer.i \
	$(PIT)/bubble.i \
	$(PIT)/change.i \
	$(PIT)/flonck.i \
	$(PIT)/fft.i \
	$(PIT)/guess.i \
	$(PIT)/icat.i \
	$(PIT)/iching1.i \
	$(PIT)/iching2.i \
	$(PIT)/ins.i \
	$(PIT)/interfunge \
	$(PIT)/lib/lib2.i \
	$(PIT)/lib/numio.i \
	$(PIT)/lib/plus.i \
	$(PIT)/lib/syslib.i \
	$(PIT)/lib/syslib3.i \
	$(PIT)/lib/syslib4.i \
	$(PIT)/lib/syslib5.i \
	$(PIT)/lib/syslib6.i \
	$(PIT)/lib/syslib7.i \
	$(PIT)/life.i \
	$(PIT)/life2.i \
	$(PIT)/pi.i \
	$(PIT)/pow.i \
	$(PIT)/quine \
	$(PIT)/pass.i \
	$(PIT)/primes.i \
	$(PIT)/random.i \
	$(PIT)/random2.i \
	$(PIT)/rot13.i \
	$(PIT)/rot13b.i \
	$(PIT)/sample.i \
	$(PIT)/sort.i \
	$(PIT)/tests/ais1.i \
	$(PIT)/tests/ais2.i \
	$(PIT)/tests/compucome.i \
	$(PIT)/tests/hello.i \
	$(PIT)/tests/ignorret.i \
	$(PIT)/tests/ignorearray.i \
	$(PIT)/tests/iogerunds.i \
	$(PIT)/tests/limits.i \
	$(PIT)/tests/permute.i \
	$(PIT)/tests/sink.i \
	$(PIT)/tests/onceagain.i \
	$(PIT)/tests/test1.i \
	$(PIT)/tests/test16bit.i \
	$(PIT)/tests/test2.i \
	$(PIT)/tests/testarray.i \
	$(PIT)/tests/testcf.i \
	$(PIT)/tests/testcreate .i \
	$(PIT)/tests/testlib2.i \
	$(PIT)/tests/testonce.i \
	$(PIT)/tests/testsplat.i \
	$(PIT)/tests/whileadd.i \
	$(PIT)/tpk.i \
	$(PIT)/unlambda.i \
	$(PIT)/yapp.i

BASENSOURCES = \
	$(PIT)/hail_mary.3i \
	$(PIT)/tests/count.3i \
	$(PIT)/tests/limits3.3i \
	$(PIT)/tests/testops3.3i \
	$(PIT)/tests/testops5.5i

SOURCES = $(BASE2SOURCES) $(BASENSOURCES)

TARGETS = $(BASE2SOURCES:.i=) \
	$(PIT)/hail_mary \
	$(PIT)/tests/count \
	$(PIT)/tests/limits3 \
	$(PIT)/tests/testops3 \
	$(PIT)/tests/testops5

.SUFFIXES:	.i .3i .4i .5i .6i .7i

.i:
	$(ICK) $<

.3i:
	$(ICK) $<

.4i:
	$(ICK) $<

.5i:
	$(ICK) $<

.6i:
	$(ICK) $<

.7i:
	$(ICK) $<

# For instructions on test conventions, see the header comment of regresscheck
test: $(TARGETS)
	@$(PIT)/beer | $(PIT)/regresscheck $(PIT)/beer
	@file $(PIT)/beer | grep -q 'shell script' || echo "Regression test of -F (using beer) FAILED."
	@cat $(PIT)/bubble.tst | $(PIT)/bubble | $(PIT)/regresscheck $(PIT)/bubble
	@cat $(PIT)/fft-delta.tst | $(PIT)/fft | $(PIT)/regresscheck $(PIT)/fft-delta
	@cat $(PIT)/fft-tophat.tst | $(PIT)/fft | $(PIT)/regresscheck $(PIT)/fft-tophat
	@cat $(PIT)/flonck.tst | $(PIT)/flonck | $(PIT)/regresscheck $(PIT)/flonck
	@echo 'Hello, sailor!' | $(PIT)/regresscheck $(PIT)/icat 
	@cat $(PIT)/interfunge.tst | $(PIT)/interfunge | $(PIT)/regresscheck $(PIT)/interfunge
	@echo 'A man, a plan, a canal, Panama.' | $(PIT)/rot13 | $(PIT)/regresscheck $(PIT)/rot13
	@echo 'A man, a plan, a canal, Panama.' | $(PIT)/rot13b | $(PIT)/regresscheck $(PIT)/rot13b
	@echo "FIVE" | $(PIT)/pi | $(PIT)/regresscheck $(PIT)/pi
	@cat $(PIT)/pow.tst | $(PIT)/pow 2>&1 | $(PIT)/regresscheck $(PIT)/pow
	@cat $(PIT)/pass.tst | $(PIT)/pass | $(PIT)/regresscheck $(PIT)/pass
	@cp $(PIT)/quine.i $(PIT)/quine.chk; $(PIT)/quine | $(PIT)/regresscheck $(PIT)/quine; rm -f $(PIT)/quine.chk 
	@cat $(PIT)/sort.tst | $(PIT)/sort | $(PIT)/regresscheck $(PIT)/sort
	@cat $(PIT)/tpk.tst | $(PIT)/tpk | $(PIT)/regresscheck $(PIT)/tpk
	@cat $(PIT)/unlambda.tst | $(PIT)/unlambda | $(PIT)/regresscheck $(PIT)/unlambda
	@cat $(PIT)/yapp.tst | $(PIT)/yapp >$(PIT)/yapptest.i && $(ICK) $(PIT)/yapptest.i && $(PIT)/yapptest | $(PIT)/regresscheck -c $(PIT)/yapp.tst $(PIT)/yapp; rm -f $(PIT)/yapptest.i $(PIT)/yapptest
	@cat $(PIT)/tests/ais1.tst | $(PIT)/tests/ais1 | $(PIT)/regresscheck $(PIT)/tests/ais1 
	@cat $(PIT)/tests/ais2.tst | $(PIT)/tests/ais2 | $(PIT)/regresscheck $(PIT)/tests/ais2 
	@$(PIT)/tests/count | $(PIT)/regresscheck $(PIT)/tests/count 
	@$(PIT)/tests/hello | $(PIT)/regresscheck $(PIT)/tests/hello 
	@$(PIT)/tests/ignorearray | $(PIT)/regresscheck $(PIT)/tests/ignorearray
	@$(PIT)/tests/ignorret | $(PIT)/regresscheck $(PIT)/tests/ignorret 
	@$(PIT)/tests/permute | $(PIT)/regresscheck $(PIT)/tests/permute 
	@$(PIT)/tests/sink 2>&1 | $(PIT)/regresscheck $(PIT)/tests/sink
	@$(PIT)/tests/test1 2>&1 | $(PIT)/regresscheck $(PIT)/tests/test1 
	@cat $(PIT)/tests/test2.tst | $(PIT)/tests/test2 | $(PIT)/regresscheck $(PIT)/tests/test2
	@$(PIT)/tests/testonce | $(PIT)/regresscheck $(PIT)/tests/testonce 
	@$(PIT)/tests/testsplat 2>&1 | $(PIT)/regresscheck $(PIT)/tests/testsplat 
	@cat $(PIT)/tests/whileadd.tst | $(PIT)/tests/whileadd | $(PIT)/regresscheck $(PIT)/tests/whileadd
	@echo "Tests complete."


# Some tests need options to compile extensions; some test extensions.
$(PIT)/beer: $(PIT)/beer.i
	$(ICK) -F $(PIT)/beer.i
$(PIT)/pass: $(PIT)/pass.i
	$(ICK) -m $(PIT)/pass.i
$(PIT)/tests/compucome: $(PIT)/tests/compucome.i
	$(ICK) -m $(PIT)/tests/compucome.i
$(PIT)/tests/permute: $(PIT)/tests/permute.i
	$(ICK) -m $(PIT)/tests/permute.i
$(PIT)/tests/testcreate: $(PIT)/tests/testcreate.i
	$(ICK) -a $(PIT)/tests/testcreate.i
$(PIT)/tests/whileadd: $(PIT)/tests/whileadd.i
	$(ICK) -m $(PIT)/tests/whileadd.i

lines:
	wc -l $(SOURCES)

clean:
	rm -f $(TARGETS) *.c *.o *~