https://github.com/c-corn/corn
Raw File
Tip revision: bdb702dd4518c2435fd142ae652c607ee2e150b1 authored by Pierre Roux on 01 February 2024, 10:26:39 UTC
Merge pull request #203 from coq-community/coq_18590
Tip revision: bdb702d
configure.sh
#!/usr/bin/env sh

# Produce files Make and Makefile

cp -f Make.in Make

DIRECTORIES="algebra complex coq_reals fta ftc liouville logic metrics model raster reals tactics transc order metric2 stdlib_omissions util classes ode"

find $DIRECTORIES -name "*.v" >>Make

${COQBIN}coq_makefile -f Make -o Makefile
back to top