Skip to content

Commit a1c24d2

Browse files
committed
Removed tests and demo files from compilation targets.
1 parent e28d9d2 commit a1c24d2

File tree

3 files changed

+8
-8
lines changed

3 files changed

+8
-8
lines changed

Makefile.local

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
# This adds compilation of a test file, without adding it to the
33
# install target.
44

5-
post-all::
5+
tests:
66
@echo -n building tests...
77
$(SHOW) 'COQC LibHyps/LibHypsTest.v'
88
$(HIDE)$(TIMER) $(COQC) $(COQDEBUG) $(TIMING_ARG) $(COQFLAGS) -w -undo-batch-mode $(COQLIBS) ./LibHyps/LibHypsTest.v $(TIMING_EXTRA)

_CoqProject

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
-R LibHyps LibHyps
22

3-
./LibHyps/LibDecomp.v
4-
./LibHyps/TacNewHyps.v
5-
./LibHyps/LibHyps.v
6-
./LibHyps/LibHypsTactics.v
7-
./LibHyps/LibHypsNaming.v
8-
./LibHyps/LibSpecialize.v
3+
LibHyps/LibHypsNaming.v
4+
LibHyps/LibHypsTactics.v
5+
LibHyps/LibSpecialize.v
6+
LibHyps/LibDecomp.v
7+
LibHyps/TacNewHyps.v
8+
LibHyps/LibHyps.v

configure.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
FILES=`find . -name "*.v" -exec echo {} \;`
44
echo "-R LibHyps LibHyps" > _CoqProject
55
echo "" >> _CoqProject
6-
for i in `find . -name "*.v"| grep -v LibHypsNaming2 | grep -v LibHypsExamples | grep -v LibHypsDemo | grep -v LibHypsTest `; do
6+
for i in `find LibHyps -name "*.v"| grep -v LibHypsNaming2 | grep -v LibHypsExamples | grep -v LibHypsDemo | grep -v LibHypsTest | grep -v LibHypsRegression`; do
77
echo $i >> _CoqProject
88
done
99
coq_makefile -f _CoqProject -o Makefile

0 commit comments

Comments
 (0)