Skip to content

Commit

Permalink
Merge pull request #35 from JasonGross/patch-1
Browse files Browse the repository at this point in the history
Add `install-all`, `install-spec` targets
  • Loading branch information
samuelgruetter authored Mar 7, 2024
2 parents 6072bd9 + 2e034d3 commit d0afd4b
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions Makefile
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
default_target: spec

.PHONY: clean install force spec all convert convert_loc_counts
.PHONY: clean install install-all install-spec force spec all convert convert_loc_counts

# absolute paths so that emacs compile mode knows where to find error
# use cygpath -m because Coq on Windows cannot handle cygwin paths
Expand Down Expand Up @@ -64,9 +64,13 @@ clean:: Makefile.coq.all
find . -type f \( -name '*~' -o -name '*.aux' -o -name '.lia.cache' -o -name '.nia.cache' \) -delete
rm -f Makefile.coq.all Makefile.coq.all.conf Makefile.coq.spec Makefile.coq.spec.conf _CoqProject

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

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

install:: install-all

# converting from Haskell using hs-to-coq:

Expand Down

0 comments on commit d0afd4b

Please sign in to comment.