-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathMakefile
More file actions
655 lines (583 loc) · 19.3 KB
/
Makefile
File metadata and controls
655 lines (583 loc) · 19.3 KB
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
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
# Lexon compiler Makefile
#
# works with
#
# gcc 7.5.0
# clang 12.0.5
# bison 3.8
# flex 2.5.35
# make 3.81
#
# earlier versions may work
#
# This makefile is two in one as it takes care of two building cycles, with or
# without generation of the required c sources on the way: if the c sources are
# provided--as in the master branch--the build works without the requirement of
# Flex and Bison allowing for easier building and better portability. If the
# sources are not provided--as after cleaning--they are generated using lexccc,
# Flex and Bison. This requires two different dependencies paths, essentially
# one being content with all c sources, the other, building them when outdated.
SHELL := /bin/bash
VPATH = bin:grammar:src:build
MAKEFLAGS += --no-print-directory
path = $(FILE)
file = $(notdir FILE)
# installation location
ifeq ($(PREFIX),)
ifneq ($(DESTDIR),)
PREFIX := $(DESTDIR)
else
PREFIX := /usr/local
endif
endif
tmp = $(shell date "+%Y-%m-%d-%H-%M-%S")
hi = \033[97m
lo = \033[38m
err = \033[91m
warn = \033[38;5;214m
ok = \033[36m
off = \033[0m
has_gindent = $(shell which gindent)
has_valgrind = $(shell which valgrind)
ifeq ($(wildcard tests/tag.exp),)
define check_for_exp
@printf "\n$(warn)Can't run regression tests: test expectation files are missing.$(off)\n"
@echo "Depending on what you meant to achieve, it can make sense to check out the"
@echo "original expectation files that came with this commit to tests/. Or to create"
@echo "them yourself using"
@echo
@echo " make expectations"
@echo
@exit 1
endef
else
define check_for_exp
endef
endif
all: build sample
help:
# make rules
#
# all build compiler and run an example (default)
# build build compiler
# install install compiler (run with sudo)
# mac install install pre-built mac binary and copy it as bin/lexon
# linux install install pre-built linux binary and copy it as bin/lexon
# sample compile escrow example to solidity
# check compiler tests: focustest, deeptest
# devcheck all tests: envtest, grammarcheck, memtest, focustest, deeptest
# testlog dump the 100 last lines of the test log
# clean delete all built files, except pre-built binaries
# ls show the source and build directories
# license show the license agreement
# help this list
#
# ▫️ dev support
#
# lexccc a build part: build lexccc compiler compiler
# lexon a build part: build lexon compiler
# distclean clean and pre-build cycle 2 sources for master branch
# devclean clean and delete pre-build binaries (dev branch)
# diffclean clean and pre-build backend modules (targets branch)
# srcclean devclean and delete test expectations (sources branch)
# rulecheck test of different repository clean state transitions
#
# ▫️ 3rd level of tests: grammar
# grammarcheck grammar check with extended yacc grammar checks
# conflicts grammar check that lists ambiguously used tokens (slow)
# counter grammar check that lists examples for ambiguous code
# focustest grammar check compiling release-defining examples
# focusprep build result references for future focustest runs
#
# ▫️ 2nd level of tests: components
# focuscomp syntax check of focus tests by native compilation, linting*
# deeptest memory handling, includes, language parser, compiler
# comptest natively compile* the result of all failing deep tests
# compall natively compile* all deep test results
# compmiss natively compile* the deep test results that failed before
# memtest valgrind & internal memory leak tests
# update interactive update of failing deeptests's result references
# recheck faster update, skipping successful tests of earlier deeptest
# autoupdate automatic update of failing deeptests's result references
# expectations full non-interactive update of all deeptest result references
# new creation of missing deeptest result references
#
# ▫️ 1st level of tests: build environment
# envtest test of build environment, gcc, flex, mtrac memory checks
#
# * the extended compilation tests use node, eslint, solcjs, and aesophia_cli.
build:
@# the conditional building replaces lexccc with build/.lexccc as dependency
@# to enable cycle2-only building as default, with no lexccc present.
@if (! $(MAKE) -s -o lexccc -q build/.lexccc build/.parser build/core.c) ; then \
printf "\n$(hi)▫️ cycle 1: build compiler compiler $(off)\n\n" ; \
$(MAKE) lexccc ; \
fi
@if (! $(MAKE) -s -q lexon) ; then \
printf "\n$(hi)▫️ cycle 2: build compiler $(off)\n\n" ; \
$(MAKE) lexon ; \
fi
@if [[ ! -e build/.built ]] ; then \
printf "$(ok)build done: bin/lexon.$(off)\n\n" ; \
touch build/.built ; \
fi
lexccc build/.lexccc: build/lexccc.c
@mkdir -p bin
cd build ; gcc -std=c99 -o ../bin/lexccc lexccc.c
@touch build/.lexccc
@echo
build/lexccc.c: src/lexon.l
@mkdir -p build
cd build ; lex -o lexccc.c ../src/lexon.l
build/.parser: build/.lexccc src/lexon.l grammar/english.lgf
@printf "$(ok)» frontend $(off)\n\n"
@mkdir -p build
@rm -f build/.built
@cp docs/MANUAL build/MANUAL
cd build ; ../bin/lexccc -Yparser.y -Hparser.h -Sscanner.l -F../src/lexon.l -Lcore ../grammar/english.lgf
cd build ; bison -d -Wn -o parser.c parser.y
cd build ; flex -d -o scanner.c scanner.l
@touch build/.parser
@echo
lexon: build/.parser build/.targets
@printf "$(ok)» compiler $(off)\n\n"
cd build ; gcc -std=c99 -o ../bin/lexon scanner.c parser.c core.c javascript.c solidity.c sophia.c
@echo
build/.targets: build/scanner.c build/parser.c build/.backend build/core.c build/javascript.c build/solidity.c build/sophia.c
@cd build ; sed -i.bak -e "/^$$/{N;/^\n$$/d;}" core.c
@cd build ; sed -i.bak -e "/^$$/{N;/^\n$$/d;}" javascript.c
@cd build ; sed -i.bak -e "/^$$/{N;/^\n$$/d;}" solidity.c
@cd build ; sed -i.bak -e "/^$$/{N;/^\n$$/d;}" sophia.c
@cd build ; rm -f *.c.bak
ifeq (, $(has_gindent))
@printf "$(warn)» skipping indentation. gindent not installed. $(off)\n"
else
@printf "» indenting\n"
@cp src/.indent.pro build/
@cd build ; gindent javascript.c solidity.c sophia.c
@cd build ; rm -f *.c~
endif
@touch build/.targets
@touch build/.parser
@echo
build/.backend:
@printf "$(ok)» backend $(off)\n\n"
@mkdir -p build
@touch build/.backend
build/scanner.c build/parser.h build/parser.c: | build/.parser
build/core.c: build/.lexccc grammar/english.lgf $(wildcard src/core.c)
@if [[ -e src/core.c ]] ; then \
printf "$(ok)» using core target module from src/$(off)\n" ; \
cp src/core.c build/ ; \
else \
echo "» building core target from english grammar definition" ; \
cd build ; \
../bin/lexccc -Tcore.c ../grammar/english.lgf ; \
sed -E -i.bak -e "s/\/\*T\*\///" core.c ; \
fi
build/javascript.c: src/target.c src/.indent.pro $(wildcard src/javascript.c)
@if [[ -e src/javascript.c ]] ; then \
printf "$(ok)» using javascript target module from src/$(off)\n" ; \
cp src/javascript.c build/ ; \
else \
echo "» building javascript target from unified target module" ; \
cd build ; \
sed -E -e "s/\/\*T\*\///" -e "s/\/\*JS \*\/ ?//" -e "s/\/\*J\+S\*\/ ?//" -e "s/\/\*Sol.*//" -e "s/\/\*Sop.*//" -e "s/\/\*S\+S.*//" -e "s/xxx_/js_/g" -e 's/ ##.*//g' ../src/target.c > javascript.c ; \
fi
build/solidity.c: src/target.c src/.indent.pro $(wildcard src/solidity.c)
@if [[ -e src/solidity.c ]] ; then \
printf "$(ok)» using solidity target module from src/$(off)\n" ; \
cp src/solidity.c build/ ; \
else \
echo "» building solidity target from unified target module" ; \
cd build ; \
sed -E -e "s/\/\*T\*\///" -e "s/\/\*Sol\*\/ ?//" -e "s/\/\*S\+S\*\/ ?//" -e "s/\/\*J\+S\*\///" -e "s/\/\*Sop.*//" -e "s/\/\*JS.*//" -e "s/xxx_/sol_/g" -e 's/ ##.*//g' ../src/target.c > solidity.c ; \
fi
build/sophia.c: src/target.c src/.indent.pro $(wildcard src/sophia.c)
@if [[ -e src/sophia.c ]] ; then \
printf "$(ok)» using sophia target module from src/$(off)\n" ; \
cp src/sophia.c build/ ; \
else \
echo "» building sophia target from unified target module" ; \
cd build ; \
sed -E -e "s/\/\*T\*\///" -e "s/\/\*Sop\*\/ ?//" -e "s/\/\*S\+S\*\/ ?//" -e "s/\/\*Sol.*//" -e "s/\/\*JS.*//" -e "s/\/\*J\+S.*//" -e "s/xxx_/sophia_/g" -e 's/ ##.*//g' ../src/target.c > sophia.c ; \
fi
install:
@install -d $(PREFIX)/bin/
install bin/lexon $(PREFIX)/bin/
mac:
ifeq (,$(wildcard bin/lexon_mac))
$(error Lexon binary for Mac not present in bin/. Try a fresh clone of the master branch.)
endif
@touch -A-0100 bin/lexon_mac
cp -p bin/lexon_mac bin/lexon
linux:
ifeq (,$(wildcard bin/lexon_linux))
$(error Lexon binary for Linux not present in bin/. Try a fresh clone of the master branch.)
endif
@touch -A-0100 bin/lexon_linux
cp -p bin/lexon_linux bin/lexon
sample: build
ifeq (,$(wildcard .nosample))
@printf "\n$(hi)▫️ compile escrow example $(off)\n\n"
@printf "$(ok)bin/lexon --solidity examples/escrow.lex$(off)\n\n"
@bin/lexon --solidity examples/escrow.lex
@echo
endif
test: build
ifneq ($(FILE),)
@printf "$(ok)» test file $(path)$(off)\n"
@mkdir -p tmp
bin/lexon --javascript -x $(path) > tmp/$(file).jsx
npx eslint tmp/$(file).jsx
bin/lexon --solidity -x $(path) > tmp/$(file).sol
solcjs --bin tmp/$(file).sol
bin/lexon --sophia -x $(path) > tmp/$(file).aes
aesophia_cli tmp/$(file).aes
@printf "$(ok)ok √$(off)\n"
else
@printf "$(ok)usage: make test FILE=<filename>$(off)\n"
endif
check: focustest deeptest
devcheck: envtest grammarcheck memtest focustest deeptest
grammarcheck: build
@printf "\n$(hi)▫️ grammar checks $(off)\n\n"
@echo "» expected: 7 shift/reduce and 2 reduce/reduce conflicts .."
cd build ; bison -d -Wall --color=yes -Wdangling-alias parser.y
@echo "» to run with -Wcounterexamples use 'make conflicts' (brief output) and 'make counter' (detailed output)."
@echo "» The temporary ambiguities reflected in these conflicts are intented."
@echo
conflicts: build
@printf "\n$(hi)▫️ grammar ambiguity check: conflicting tokens $(off)\n\n"
@echo "» this test takes time"
cd build ; bison -d -Wcounterexamples parser.y 2>&1 | grep conflict | sed -e "s/parser.y: warning: //" -e "s/\[-W.*\]//" | awk '!x[$$0]++'
@echo
counter: build
@printf "\n$(hi)▫️ grammar ambiguity check: details of any shift/reduce problems of the grammar $(off)\n\n"
cd build ; bison -d -Wcounterexamples --color=yes parser.y
@echo
focusprep: build
@cd tests ; $(MAKE) focusprep
focustest: build
@cd tests ; $(MAKE) focustest
focuscomp: build
@cd tests ; $(MAKE) focuscomp
expclean:
@cd tests ; $(MAKE) expclean
deeptest: build
@printf "\n$(hi)▫️ deep test $(off)\n"
ifneq (,$(wildcard tests/tag.exp))
@cd tests ; $(MAKE) deeptest
@echo
else
@printf "\n$(warn)Can't run regression tests: test expectation files are missing.$(off)\n"
@echo "Depending on what you meant to achieve, it can make sense to check out the"
@echo "original expectation files that came with this commit to tests/. Or to create"
@echo "them yourself using"
@echo
@echo " make expectations"
@echo
@exit 1
endif
comptest: build
@printf "\n$(hi)▫️ deep test with native compilation for failing tests$(off)\n"
ifneq (,$(wildcard tests/tag.exp))
@cd tests ; $(MAKE) comptest
@echo
else
@printf "\n$(warn)Can't run regression tests: test expectation files are missing.$(off)\n"
@echo "Depending on what you meant to achieve, it can make sense to check out the"
@echo "original expectation files that came with this commit to tests/. Or to create"
@echo "them yourself using"
@echo
@echo " make expectations"
@echo
@exit 1
endif
compmiss: build
@printf "\n$(hi)▫️ deep test with native compilation for all that did not pass native$(off)\n"
$(check_for_exp)
@cd tests ; $(MAKE) compmiss
@echo
compall: build
@printf "\n$(hi)▫️ deep test with native compilation for all$(off)\n"
ifneq (,$(wildcard tests/tag.exp))
@cd tests ; $(MAKE) compall
@echo
else
@printf "\n$(warn)Can't run regression tests: test expectation files are missing.$(off)\n"
@echo "Depending on what you meant to achieve, it can make sense to check out the"
@echo "original expectation files that came with this commit to tests/. Or to create"
@echo "them yourself using"
@echo
@echo " make expectations"
@echo
@exit 1
endif
update: build
@printf "\n$(hi)▫️ interactive update of deeptest reference results $(off)\n\n"
@cd tests ; $(MAKE) update
@echo
autoupdate: build
@printf "\n$(hi)▫️ auto-update of deeptest reference results $(off)\n\n"
@cd tests ; $(MAKE) autoupdate
@echo
autocomp: build
@printf "\n$(hi)▫️ auto-update of deeptest reference results and native compile test$(off)\n\n"
@cd tests ; $(MAKE) autocomp
@echo
recheck: build
@printf "\n$(hi)▫️ interactive update of deeptest reference results, skipping successful tests of last test run $(off)\n\n"
@cd tests ; $(MAKE) recheck
@echo
expectations: build
@printf "\n$(hi)▫️ recreate all deeptest result references $(off)\n"
@cd tests ; $(MAKE) expectations
@$(MAKE) focusprep
new: build
@printf "\n$(hi)▫️ create missing deeptest result references $(off)\n\n"
@cd tests ; $(MAKE) new
@echo
envtest:
@printf "\n$(hi)▫️ test build environment: flex, gcc, mtrac memory tracker $(off)\n\n"
cd tests ; flex -DWHITEBOX -o whitebox.c ../src/lexon.l
cd tests ; gcc -o test -include whitebox.c test-memory-14.c
cd tests ; ./test
@echo "√ build environment tests passed ok." # otherwise would not reach here
@echo
memtest: build
@printf "\n$(hi)▫️ memory leak tests: valgrind and internal $(off)\n\n"
@printf "$(ok)» internal leak checks$(off)\n\n"
bin/lexon -M -Q --core examples/escrow.lex
@echo
bin/lexon -M -Q --javascript examples/evaluation.lex
@echo
bin/lexon -M -Q --solidity examples/statement.lex
@echo
ifeq (, $(has_valgrind))
@printf "$(warn)» skipping valgrind, not installed. $(off)\n\n"
else
@printf "$(ok)» valgrind leak checks$(off)\n\n"
valgrind --leak-check=full bin/lexon -Q --core examples/escrow.lex
@echo
valgrind --leak-check=full bin/lexon -Q --javascript examples/evaluation.lex
@echo
valgrind --leak-check=full bin/lexon -Q --solidity examples/statement.lex
@echo
endif
testlog:
@cd tests ; $(MAKE) testlog
cleanlog:
@cd tests ; $(MAKE) cleanlog
clean:
@printf "\n\n$(hi)▫️ clean built and generated files $(off)\n\n"
rm -f .D???????
rm -f bin/lexccc
rm -f build/.lexccc
rm -f bin/lexon
rm -rf build
@echo
@cd tests ; $(MAKE) clean
@echo
@echo .:
@ls -A
@echo
@echo bin:
@if [ -e bin ] ; then ls bin ; else echo "[not present]" ; fi
@echo
@echo src:
@ls -A src
@echo
@printf "$(ok)√ cleaned for building from cycle 1 $(off)\n\n"
distclean: restore_binaries
@printf "\n\n$(hi)▫️ clean and pre-build for master branch $(off)\n\n"
@$(MAKE) binaries clean build
@printf "\n$(hi)▫️ clean build folder for master branch $(off)\n\n"
rm -f bin/lexccc
rm -f bin/lexon
rm -f build/.indent.pro
rm -f build/.built
rm -f build/MANUAL
@echo cd tests
@cd tests ; $(MAKE) clean
@$(MAKE) ls
@printf "$(ok)√ cleaned and pre-built for master branch $(off)\n\n"
@echo
@echo ls should look like this:
@printf "$(lo)\n\n"
@echo "ls -A"
@echo ".git bin LICENSE README.MD build grammar tests"
@echo ".gitignore CREDITS Makefile examples src .bin.bak"
@echo ""
@echo "ls -A grammar"
@echo "english.lgf"
@echo ""
@echo "ls -A src"
@echo ".indent.pro lexon.l target.c"
@echo ""
@echo "ls -A build"
@echo ".backend .targets javascript.c parser.c parser.y scanner.l sophia.c"
@echo ".parser core.c lexccc.c parser.h scanner.c solidity.c"
@echo ""
@echo "ls -A bin"
@echo "lexon_linux lexon_mac"
@echo ""
@echo "ls -A examples"
@echo "escrow.lex evaluation.lex statement.lex"
@printf "$(off)\n"
@echo ""
git status
distribution:
@printf "\n\n$(hi)▫️ clean, pre-build and copy for distribution $(off)\n\n"
@$(MAKE) distclean
rm -f distribution
mkdir -p distribution/Source/tests
cp -vpR .distribution/tests/* distribution/Source/tests/
cp -vpR .distribution/RELEASE*.pdf distribution/
cp -vpR .distribution/Papers distribution/
cp -vpR .distribution/Documentation distribution/
cp -vpR bin distribution/Compiler
cp -vpR bin distribution/Source/
cp -vpR build distribution/Source/
cp -vpR src distribution/Source/
cp -vpR examples distribution/Examples
cp -vpR examples distribution/Source/
cp -vpR grammar distribution/Grammar
cp -vpR grammar distribution/Source/
cp -vpR README.MD distribution/Source/
cp -vpR LICENSE distribution/Source/
cp -vpR CREDITS distribution/Source/
cp -vpR Makefile distribution/Source/
@ls -R distribution
binaries:
@echo "» checking that binaries are in place"
ifeq (,$(wildcard bin/lexon_mac))
$(error Mac binary bin/lexon_mac missing)
endif
ifeq (,$(wildcard bin/lexon_linux))
$(error Linux binary bin/lexon_linux missing)
endif
restore_binaries:
@mkdir -p bin
-cp -n .bin.bak/lexon_* bin/
diffclean:
@printf "\n\n$(hi)▫️ clean and pre-build for targets branch $(off)\n\n"
@$(MAKE) clean expclean build
mkdir -p .bin.bak
-mv bin/lexon_* .bin.bak
@rm -rf bin
rm -f build/scanner.*
rm -f build/parser.*
rm -f build/.backend
rm -f build/.built
rm -f build/.parser
rm -f build/.targets
rm -f build/MANUAL
@echo
@echo .:
@ls -A
@echo
@echo bin:
@if [ -e bin ] ; then ls bin ; else echo "[not present]" ; fi
@echo
@echo src:
@ls -A src
@echo
@printf "$(ok)√ cleaned for targets branch $(off)\n\n"
@git branch
@git status
@printf "$(ok)√ deep cleaned for dev branch$(off)\n"
@printf "Deleted all pre-built and gererated files except test expectations.\n\n"
@git branch
@git status
srcclean:
@printf "\n$(hi)▫️ all clean for sources branch $(off)\n\n"
@$(MAKE) clean expclean
mkdir -p .bin.bak
-mv bin/lexon_* .bin.bak
@rm -rf bin
@rm -rf build
@echo
@echo .:
@ls -A
@echo
@echo bin:
@if [ -e bin ] ; then ls bin ; else echo "[not present]" ; fi
@echo
@echo build:
@if [ -e build ] ; then ls bin ; else echo "[not present]" ; fi
@echo
@echo src:
@ls -A src
@echo
@printf "$(ok)√ cleaned for sources branch $(off)\n\n"
@git branch
@git status
ls:
@echo
-ls -A
@echo
-ls -A grammar
@echo
-ls -A src
@echo
-ls -A build
@echo
-ls -A bin
@echo
-ls -A examples
@echo
license:
cat LICENSE
rulecheck:
echo 'n' | $(MAKE) distclean
$(MAKE) all
echo 'n' | $(MAKE) distclean
$(MAKE) build
$(MAKE) devclean
$(MAKE) all
$(MAKE) devclean
$(MAKE) build
$(MAKE) diffclean
$(MAKE) all
$(MAKE) diffclean
$(MAKE) build
$(MAKE) clean
$(MAKE) lexccc
$(MAKE) clean
$(MAKE) lexon
$(MAKE) clean
$(MAKE) all
$(MAKE) clean
$(MAKE) build
$(MAKE) srcclean
$(MAKE) all
$(MAKE) new
echo 'y' | $(MAKE) expectations
$(MAKE) new
$(MAKE) sample
$(MAKE) check
$(MAKE) devcheck
$(MAKE) envtest
$(MAKE) testlog
$(MAKE) ls
$(MAKE) license
$(MAKE) help
$(MAKE) check
$(MAKE) deeptest
$(MAKE) recheck
$(MAKE) update
$(MAKE) check
$(MAKE) grammarcheck
$(MAKE) conflicts
$(MAKE) counter
$(MAKE) focustest
$(MAKE) focusprep
$(MAKE) focustest
$(MAKE) clean
$(MAKE) restore_binaries
echo 'n' | $(MAKE) distclean
$(MAKE) ls
@printf "\n$(hi)√ sanity check of make rules complete$(off)\n\n"
.PHONY: all help build install sample test check comptest compall devcheck grammarcheck conflicts counter focusprep focustest focuscomp expclean deeptest update autoupdate autocomp recheck expectations new envtest testlog cleanlog clean distclean binaries restore_binaries diffclean devclean srcclean ls license rulecheck
# (c) 2025 H. Diedrich, see file LICENSE