/usr/share/doc/why/examples-c/Makefile is in why-examples 2.34-4ubuntu4.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21  | DIRS = tutorial sorting g4 linked-lists schorr-waite
check:
	for d in $(DIRS); do make -C $$d check; done
all: 
	for d in $(DIRS); do \
		if make -C $$d coq; then \
			echo "Coq proofs OK in $$d" ; \
		else \
			echo "Coq proofs FAILED in $$d" ; \
			exit 1 ;\
		fi ; \
	done
bench:
	make -C tutorial allcoq
	for d in $(DIRS); do make -C $$d simplify; done
clean:
	for d in $(DIRS); do make -C $$d clean; done
 |