-
Notifications
You must be signed in to change notification settings - Fork 86
/
Copy pathconfigure.sh
executable file
·80 lines (73 loc) · 5.61 KB
/
configure.sh
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
#!/usr/bin/env bash
# Removes all generated makefiles
make -f Makefile mrproper
# Dependencies for local or global builds.
# When building the packages separately, dependencies are not set as everything
# should already be available in $(COQMF_LIB)/user-contrib/MetaRocq/*
# For local builds, we set specific dependencies of each subproject in */metarocq-config
if command -v rocq >/dev/null 2>&1
then
COQLIB=` rocq c -where | tr -d '\r' | tr '\\\\' '/'`
if [[ "$1" = "local" ]] || [[ "$1" = "--enable-local" ]] || [[ "$1" = "--enable-quick" ]]
then
echo "Building MetaRocq locally"
COMMON_DEPS="-R ../utils/theories MetaRocq.Utils"
TEMPLATE_COQ_DEPS="-R ../common/theories MetaRocq.Common"
PCUIC_DEPS="-R ../common/theories MetaRocq.Common"
SAFECHECKER_DEPS="-R ../pcuic/theories MetaRocq.PCUIC"
TEMPLATE_PCUIC_DEPS="-R ../pcuic/theories MetaRocq.PCUIC -R ../template-rocq/theories MetaRocq.Template -I ../template-rocq"
QUOTATION_DEPS="-R ../template-pcuic/theories MetaRocq.TemplatePCUIC -R ../pcuic/theories MetaRocq.PCUIC -R ../template-rocq/theories MetaRocq.Template"
SAFECHECKER_PLUGIN_DEPS="-R ../template-pcuic/theories MetaRocq.TemplatePCUIC -R ../safechecker/theories MetaRocq.SafeChecker -I ../template-rocq"
ERASURE_DEPS="-R ../safechecker-plugin/theories MetaRocq.SafeCheckerPlugin -R ../template-pcuic/theories MetaRocq.TemplatePCUIC -R ../template-rocq/theories MetaRocq.Template -I ../template-rocq -R ../safechecker/theories MetaRocq.SafeChecker"
ERASURE_PLUGIN_DEPS="-R ../template-rocq/theories MetaRocq.Template -I ../template-rocq -R ../template-pcuic/theories MetaRocq.TemplatePCUIC -R ../erasure/theories MetaRocq.Erasure"
TRANSLATIONS_DEPS="-R ../template-rocq/theories MetaRocq.Template -I ../template-rocq"
EXAMPLES_DEPS="-R ../safechecker-plugin/theories MetaRocq.SafeCheckerPlugin -R ../erasure-plugin/theories MetaRocq.ErasurePlugin -I ../erasure-plugin/src -I ../safechecker-plugin/src/"
TEST_SUITE_DEPS="-R ../safechecker-plugin/theories MetaRocq.SafeCheckerPlugin -R ../erasure-plugin/theories MetaRocq.ErasurePlugin -I ../erasure-plugin/src -I ../safechecker-plugin/src/"
PLUGIN_DEMO_DEPS="-R ../../utils/theories MetaRocq.Utils -R ../../common/theories MetaRocq.Common -R ../../template-rocq/theories MetaRocq.Template -I ../../template-rocq/ -I ../../erasure-plugin/src -I ../../safechecker-plugin/src/"
echo "METAROCQ_CONFIG = local" > Makefile.conf
else
echo "Building MetaRocq globally (default)"
COMMON_DEPS=""
TEMPLATE_COQ_DEPS=""
PCUIC_DEPS=""
SAFECHECKER_DEPS=""
TEMPLATE_PCUIC_DEPS=""
QUOTATION_DEPS=""
SAFECHECKER_PLUGIN_DEPS=""
ERASURE_DEPS=""
ERASURE_PLUGIN_DEPS=""
TRANSLATIONS_DEPS=""
EXAMPLES_DEPS=""
TEST_SUITE_DEPS=""
PLUGIN_DEMO_DEPS=""
echo "METAROCQ_CONFIG = global" > Makefile.conf
fi
echo "# DO NOT EDIT THIS FILE: autogenerated from ./configure.sh" > common/metarocq-config
echo "# DO NOT EDIT THIS FILE: autogenerated from ./configure.sh" > template-rocq/metarocq-config
echo "# DO NOT EDIT THIS FILE: autogenerated from ./configure.sh" > pcuic/metarocq-config
echo "# DO NOT EDIT THIS FILE: autogenerated from ./configure.sh" > safechecker/metarocq-config
echo "# DO NOT EDIT THIS FILE: autogenerated from ./configure.sh" > erasure/metarocq-config
echo "# DO NOT EDIT THIS FILE: autogenerated from ./configure.sh" > template-pcuic/metarocq-config
echo "# DO NOT EDIT THIS FILE: autogenerated from ./configure.sh" > quotation/metarocq-config
echo "# DO NOT EDIT THIS FILE: autogenerated from ./configure.sh" > safechecker-plugin/metarocq-config
echo "# DO NOT EDIT THIS FILE: autogenerated from ./configure.sh" > erasure-plugin/metarocq-config
echo "# DO NOT EDIT THIS FILE: autogenerated from ./configure.sh" > translations/metarocq-config
echo "# DO NOT EDIT THIS FILE: autogenerated from ./configure.sh" > examples/metarocq-config
echo "# DO NOT EDIT THIS FILE: autogenerated from ./configure.sh" > test-suite/metarocq-config
echo "# DO NOT EDIT THIS FILE: autogenerated from ./configure.sh" > test-suite/plugin-demo/metarocq-config
echo ${COMMON_DEPS} >> common/metarocq-config
echo ${COMMON_DEPS} ${TEMPLATE_COQ_DEPS} >> template-rocq/metarocq-config
echo ${COMMON_DEPS} ${PCUIC_DEPS} >> pcuic/metarocq-config
echo ${COMMON_DEPS} ${PCUIC_DEPS} ${SAFECHECKER_DEPS} >> safechecker/metarocq-config
echo ${COMMON_DEPS} ${PCUIC_DEPS} ${TEMPLATE_PCUIC_DEPS} >> template-pcuic/metarocq-config
echo ${COMMON_DEPS} ${PCUIC_DEPS} ${TEMPLATE_PCUIC_DEPS} ${QUOTATION_DEPS} >> quotation/metarocq-config
echo ${COMMON_DEPS} ${PCUIC_DEPS} ${TEMPLATE_PCUIC_DEPS} ${SAFECHECKER_PLUGIN_DEPS} >> safechecker-plugin/metarocq-config
echo ${COMMON_DEPS} ${PCUIC_DEPS} ${SAFECHECKER_DEPS} ${ERASURE_DEPS} >> erasure/metarocq-config
echo ${COMMON_DEPS} ${PCUIC_DEPS} ${ERASURE_DEPS} ${TEMPLATE_PCUIC_DEPS} ${ERASURE_PLUGIN_DEPS} >> erasure-plugin/metarocq-config
echo ${COMMON_DEPS} ${PCUIC_DEPS} ${TRANSLATIONS_DEPS} >> translations/metarocq-config
echo ${COMMON_DEPS} ${PCUIC_DEPS} ${SAFECHECKER_DEPS} ${TEMPLATE_PCUIC_DEPS} ${ERASURE_DEPS} ${TRANSLATIONS_DEPS} ${ERASURE_PLUGIN_DEPS} ${EXAMPLES_DEPS} >> examples/metarocq-config
echo ${COMMON_DEPS} ${PCUIC_DEPS} ${SAFECHECKER_DEPS} ${TEMPLATE_PCUIC_DEPS} ${ERASURE_DEPS} ${TRANSLATIONS_DEPS} ${ERASURE_PLUGIN_DEPS} ${TEST_SUITE_DEPS} >> test-suite/metarocq-config
echo ${PLUGIN_DEMO_DEPS} >> test-suite/plugin-demo/metarocq-config
else
echo "Error: rocq not found in path"
fi