blob: 8dee394b4b730589b795864970a20484c34bcb6c (
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
|
ALL_DIRS ?= $(filter-out %.template, $(filter-out Makefile%, $(wildcard *)))
VERIFY_DIRS = $(addprefix verif-,$(ALL_DIRS))
CLEAN_DIRS = $(addprefix clean-,$(ALL_DIRS))
COPY_MAKEFILES = $(addprefix copy-makefile-,$(ALL_DIRS))
GEN_COQ_PROJECT = $(addprefix gen-coq-project-,$(ALL_DIRS))
.PHONY: all
all: $(COPY_MAKEFILES) $(GEN_COQ_PROJECT) $(VERIFY_DIRS)
.PHONY: clean
clean: $(CLEAN_DIRS)
.PHONY: verif-%
verif-%:
cd $* && make all
.PHONY: copy-makefile-%
copy-makefile-%:
rm -f $*/Makefile
echo "# This file was automatically generated - modify ../Makefile.template instead" >> $*/Makefile
cat Makefile.template >> $*/Makefile
.PHONY: gen-coq-project-%
gen-coq-project-%:
rm -f $*/_CoqProject
echo "# This file was automatically generated - see ../Makefile" >> $*/_CoqProject
cat _CoqProject.template >> $*/_CoqProject
echo $(patsubst $*/%,"\n"%,$(wildcard $*/*.v)) >> $*/_CoqProject
sed -i -z "s/ \n/\n/g" $*/_CoqProject
.PHONY: clean-%
clean-%:
cd $* && make clean
|