aboutsummaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorDan Rostovtsev <dan@rostovtsev.org>2026-04-02 12:15:09 -0400
committerDan Rostovtsev <dan@rostovtsev.org>2026-04-02 12:15:09 -0400
commit5bc5e17dc6981ef19ad213984929aed931d98651 (patch)
tree630a07e8ba8293ae425607d0feb5a3d3573571b9 /Makefile
parent260fd7480c613205ab779b69e354ecf8f8b9a131 (diff)
Lambda v0.0.0v0.0.0
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile29
1 files changed, 0 insertions, 29 deletions
diff --git a/Makefile b/Makefile
deleted file mode 100644
index 520ce64..0000000
--- a/Makefile
+++ /dev/null
@@ -1,29 +0,0 @@
-# Makefile taken from Rocq Reference Manual 9.0.0
-
-# KNOWNTARGETS will not be passed along to CoqMakefile
-
-KNOWNTARGETS := CoqMakefile extra-stuff extra-stuff2
-
-# KNOWNFILES will not get implicit targets from the final rule, and so
-# depending on them won't invoke the submake
-# Warning: These files get declared as PHONY, so any targets depending
-# on them always get rebuilt
-
-KNOWNFILES := Makefile _CoqProject
-.DEFAULT_GOAL := invoke-coqmakefile
-
-CoqMakefile: Makefile _CoqProject
- $(COQBIN)coq_makefile -f _CoqProject -o CoqMakefile
-
-invoke-coqmakefile: CoqMakefile
- $(MAKE) --no-print-directory -f CoqMakefile \
- $(filter-out $(KNOWNTARGETS), $(MAKECMDGOALS))
-.PHONY: invoke-coqmakefile $(KNOWNFILES)
-
-####################################################################
-## Your targets here ##
-####################################################################
-
-# This should be the last rule, to handle any targets not declared above
-%: invoke-coqmakefile
- @true