aboutsummaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile11
1 files changed, 11 insertions, 0 deletions
diff --git a/Makefile b/Makefile
index ee92d04ac..a653be996 100644
--- a/Makefile
+++ b/Makefile
@@ -140,6 +140,17 @@ display: $(DISPLAY_VO:.vo=.log) coqprime
regenerate-curves::
./regenerate-curves.sh
+# extra target for faster coqdep
+.PHONY: src/Specific/.autgenerated-deps
+src/Specific/.autgenerated-deps:
+ $(SHOW)'COQDEP $@'
+ $(HIDE)$(COQDEP) $(COQLIBS) -dyndep var -c $(SPECIFIC_GENERATED_VOFILES:.vo=.v) $(redir_if_ok)
+
+.PHONY: fast-autogenerated-deps
+fast-autogenerated-deps: src/Specific/.autgenerated-deps
+ $(SHOW)'CP .v.d'
+ $(HIDE)for i in $(SPECIFIC_GENERATED_VOFILES:.vo=.v.d); do cp -f src/Specific/.autgenerated-deps $$i; done
+
printlite::
@echo 'Files Made:'
@for i in $(sort $(LITE_VOFILES)); do echo $$i; done