Skip to content

Commit

Permalink
Removed tests and demo files from compilation targets.
Browse files Browse the repository at this point in the history
  • Loading branch information
Matafou committed Jun 6, 2021
1 parent e28d9d2 commit a1c24d2
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion Makefile.local
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
# This adds compilation of a test file, without adding it to the
# install target.

post-all::
tests:
@echo -n building tests...
$(SHOW) 'COQC LibHyps/LibHypsTest.v'
$(HIDE)$(TIMER) $(COQC) $(COQDEBUG) $(TIMING_ARG) $(COQFLAGS) -w -undo-batch-mode $(COQLIBS) ./LibHyps/LibHypsTest.v $(TIMING_EXTRA)
Expand Down
12 changes: 6 additions & 6 deletions _CoqProject
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
-R LibHyps LibHyps

./LibHyps/LibDecomp.v
./LibHyps/TacNewHyps.v
./LibHyps/LibHyps.v
./LibHyps/LibHypsTactics.v
./LibHyps/LibHypsNaming.v
./LibHyps/LibSpecialize.v
LibHyps/LibHypsNaming.v
LibHyps/LibHypsTactics.v
LibHyps/LibSpecialize.v
LibHyps/LibDecomp.v
LibHyps/TacNewHyps.v
LibHyps/LibHyps.v
2 changes: 1 addition & 1 deletion configure.sh
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
FILES=`find . -name "*.v" -exec echo {} \;`
echo "-R LibHyps LibHyps" > _CoqProject
echo "" >> _CoqProject
for i in `find . -name "*.v"| grep -v LibHypsNaming2 | grep -v LibHypsExamples | grep -v LibHypsDemo | grep -v LibHypsTest `; do
for i in `find LibHyps -name "*.v"| grep -v LibHypsNaming2 | grep -v LibHypsExamples | grep -v LibHypsDemo | grep -v LibHypsTest | grep -v LibHypsRegression`; do
echo $i >> _CoqProject
done
coq_makefile -f _CoqProject -o Makefile

0 comments on commit a1c24d2

Please sign in to comment.