We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e7b938f commit b525fbeCopy full SHA for b525fbe
coq
@@ -1,15 +1,13 @@
1
#!/bin/sh
2
-# Start coqide with the right -I options
+# Start coqide with the right options
3
# Use the Makefile to rebuild dependencies if needed
4
# Recompile the modified file after coqide editing
5
6
-INCLUDES=`make print-includes`
7
-
8
make -q ${1}o || {
9
make -n ${1}o | grep -v "\\b${1}\\b" | \
10
(while read cmd; do
11
sh -c "$cmd" || exit 2
12
done)
13
}
14
15
-"${COQBIN}coqide" -async-proofs off $INCLUDES $1 && make ${1}o
+"${COQBIN}coqide" -async-proofs off $1 && make ${1}o
0 commit comments