Skip to content
Snippets Groups Projects
Commit 7f462118 authored by Felipe Cerqueira's avatar Felipe Cerqueira
Browse files

Fix create_makefile on Windows (MSYS2 shell)

parent ac5ccfe0
No related branches found
No related tags found
No related merge requests found
Pipeline #
......@@ -65,7 +65,7 @@ OPT?=
COQDEP?="$(COQBIN)coqdep" -c
COQFLAGS?=-q $(OPT) $(COQLIBS) $(OTHERFLAGS) $(COQ_XML)
COQCHKFLAGS?=-silent -o
COQDOCFLAGS?=-interpolate -utf8 --parse-comments --external https://math-comp.github.io/math-comp/htmldoc/ mathcomp
COQDOCFLAGS?=-interpolate -utf8 --plain-comments --parse-comments --external https://math-comp.github.io/math-comp/htmldoc/ mathcomp
COQC?=$(TIMER) "$(COQBIN)coqc"
GALLINA?="$(COQBIN)gallina"
COQDOC?="$(COQBIN)coqdoc"
......
......@@ -7,28 +7,22 @@ coq_makefile -f _CoqProject $(find . -name "*.v" ! -name "*#*" ! -name "*eqdec*.
# adds the rt. prefix
if [ "$(uname)" == "Darwin" ]; then
sed -i '' 's|$(notdir $(^:.vo=))|$(addprefix rt., $(subst /,., $(^:.vo=)))|g' Makefile
elif [ "$(expr substr $(uname -s) 1 5)" == "Linux" ]; then
else
sed -i 's|$(notdir $(^:.vo=))|$(addprefix rt., $(subst /,., $(^:.vo=)))|g' Makefile
elif [ "$(expr substr $(uname -s) 1 10)" == "MINGW32_NT" ]; then
:
fi
# Fix 'make html' so that it parses comments and has links to ssreflect.
if [ "$(uname)" == "Darwin" ]; then
sed -i '' 's|-interpolate -utf8|-interpolate -utf8 --plain-comments --parse-comments --external https://math-comp.github.io/math-comp/htmldoc/ mathcomp|g' Makefile
elif [ "$(expr substr $(uname -s) 1 5)" == "Linux" ]; then
else
sed -i 's|-interpolate -utf8|-interpolate -utf8 --plain-comments --parse-comments --external https://math-comp.github.io/math-comp/htmldoc/ mathcomp|g' Makefile
elif [ "$(expr substr $(uname -s) 1 10)" == "MINGW32_NT" ]; then
:
fi
# Fix 'make clean' to remove all binary files, regardless of name
if [ "$(uname)" == "Darwin" ]; then
sed -i '' 's|rm -f $(VOFILES) $(VOFILES:.vo=.vio) $(GFILES) $(VFILES:.v=.v.d) $(VFILES:=.beautified) $(VFILES:=.old)|find . -name "*.vo" -delete -o -name "*.glob" -delete -o -name "*.v.d" -delete -o -name "*.vio" -delete -o -name "*.old" -delete -o -name "*.beautified" -delete|g' Makefile
elif [ "$(expr substr $(uname -s) 1 5)" == "Linux" ]; then
else
sed -i 's|rm -f $(VOFILES) $(VOFILES:.vo=.vio) $(GFILES) $(VFILES:.v=.v.d) $(VFILES:=.beautified) $(VFILES:=.old)|find . -name "*.vo" -delete -o -name "*.glob" -delete -o -name "*.v.d" -delete -o -name "*.vio" -delete -o -name "*.old" -delete -o -name "*.beautified" -delete|g' Makefile
elif [ "$(expr substr $(uname -s) 1 10)" == "MINGW32_NT" ]; then
:
fi
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment