mirror of
https://github.com/achlipala/frap.git
synced 2024-11-10 00:07:51 +00:00
New Makefile target: lib, to build just the library, not the lecture code
This commit is contained in:
parent
c129d8447e
commit
9b40bf78af
1 changed files with 4 additions and 1 deletions
5
Makefile
5
Makefile
|
@ -1,4 +1,4 @@
|
|||
.PHONY: all coq install
|
||||
.PHONY: all lib coq install
|
||||
|
||||
all: frap_book.pdf coq
|
||||
|
||||
|
@ -12,6 +12,9 @@ frap_book.pdf: frap_book.tex Makefile
|
|||
coq: Makefile.coq
|
||||
$(MAKE) -f Makefile.coq
|
||||
|
||||
lib: Makefile.coq
|
||||
$(MAKE) -f Makefile.coq Frap.vo
|
||||
|
||||
Makefile.coq: Makefile _CoqProject *.v
|
||||
coq_makefile -f _CoqProject -o Makefile.coq
|
||||
|
||||
|
|
Loading…
Reference in a new issue