aboutsummaryrefslogtreecommitdiff
path: root/Makefile
blob: 42fb6aa7c82ceae58beea2ce4b1fb6aecb37a3c4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
# © 2015 the Massachusetts Institute of Technology
# @author bbaren + rsloan

SOURCES := $(shell grep -v '^-' _CoqProject | tr '\n' ' ')
COQLIBS := $(shell grep '^-' _CoqProject | tr '\n' ' ')

include .make/cc.mk
include .make/coq.mk

FAST_TARGETS += check_fiat clean

.DEFAULT_GOAL = all
.PHONY: all clean coquille

all: $(SOURCES)
	@echo "done!"

coquille:
	vim -c "execute coquille#Launch($(COQLIBS))" .

clean:
	$(RM) $(foreach f,$(SOURCES),$(call coq-generated,$(basename $f)))