Skip to content

Commit

Permalink
adding install and uninstall targets.
Browse files Browse the repository at this point in the history
  • Loading branch information
gmalecha committed Feb 5, 2016
1 parent 0b5df1d commit 499cd8b
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,12 @@ coq: Makefile.coq
Makefile.coq: Makefile $(MODULES)
$(COQBIN)coq_makefile -f _CoqProject -o Makefile.coq

install: Makefile.coq
$(MAKE) -f Makefile.coq install

uninstall: Makefile.coq
$(MAKE) -f Makefile.coq uninstall

clean:: Makefile.coq
$(MAKE) -f Makefile.coq clean
rm -f Makefile.coq

0 comments on commit 499cd8b

Please sign in to comment.