Skip to content

Commit 2d4e73c

Browse files
committed
rename Makefile.coq into rocq.mk
1 parent 0568b85 commit 2d4e73c

File tree

2 files changed

+8
-8
lines changed

2 files changed

+8
-8
lines changed

.gitignore

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,8 +9,8 @@ doc/main.html
99
*.glob
1010
*.vo
1111
CoqMakefile.conf
12-
Makefile.coq
13-
Makefile.coq.conf
12+
rocq.mk
13+
rocq.mk.conf
1414
_CoqProject
1515
*.time
1616
*.vok

Makefile

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -9,19 +9,19 @@ LIBNAME := CoLoR
99

1010
.PHONY: default config clean clean-dep clean-all clean-doc tags doc install-doc install-dist targz
1111

12-
MAKECOQ := +$(MAKE) -r -f Makefile.coq
12+
MAKECOQ := +$(MAKE) -r -f rocq.mk
1313

1414
VFILES := $(shell find . -name \*.v | grep -v .\# | sed -e 's|^./||g')
1515

16-
default: Makefile.coq
16+
default: rocq.mk
1717
$(MAKECOQ)
1818

19-
time: Makefile.coq
19+
time: rocq.mk
2020
COQC=./time_coqc make
2121

22-
config Makefile.coq:
22+
config rocq.mk:
2323
echo -R . $(LIBNAME) $(VFILES) > _CoqProject
24-
rocq makefile -f _CoqProject -o Makefile.coq
24+
rocq makefile -f _CoqProject -o rocq.mk
2525

2626
clean:
2727
rm -f `find . -name \*~`
@@ -32,7 +32,7 @@ clean-dep:
3232
rm -f `find . -name \*.v.d`
3333

3434
clean-all: clean clean-doc clean-dep
35-
rm -f _CoqProject Makefile.coq Makefile.coq.conf stat_time.log `find . -name \*.time`
35+
rm -f _CoqProject rocq.mk rocq.mk.conf stat_time.log `find . -name \*.time`
3636

3737
clean-doc:
3838
rm -f doc/$(LIBNAME).*.html doc/index.html doc/main.html doc/coqdoc.css

0 commit comments

Comments
 (0)