diff options
author | John MacFarlane <jgm@berkeley.edu> | 2014-11-12 11:50:46 -0800 |
---|---|---|
committer | John MacFarlane <jgm@berkeley.edu> | 2014-11-12 11:52:23 -0800 |
commit | 7df8355125c1cf660093e1ebcf8f52d15423e23e (patch) | |
tree | f8239ef1621b7b13fabb9cf289eb79b6be17f553 /Makefile | |
parent | 2145ef0fe27f1db9a2e6d981df996298d94fbdae (diff) |
Re-added check to Makefile.
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 13 |
1 files changed, 8 insertions, 5 deletions
@@ -13,21 +13,24 @@ SPECVERSION=$(shell grep version: $(SPEC) | sed -e 's/version: *//') .PHONY: all spec leakcheck clean fuzztest dingus upload jshint test testjs benchjs update-site upload-site check npm debug tarball all: $(BUILDDIR) - @cmake --build $(BUILDDIR) || (echo "You need cmake to build this program: http://www.cmake.org/download/" && exit 1) + @make -C $(BUILDDIR) -install: $(BUILDDIR) man/man1/cmark.1 - cmake --build $(BUILDDIR) --target install +check: + @cmake --version > /dev/null || (echo "You need cmake to build this program: http://www.cmake.org/download/" && exit 1) -$(BUILDDIR): +$(BUILDDIR): check mkdir -p $(BUILDDIR); \ cd $(BUILDDIR); \ cmake .. -DCMAKE_BUILD_TYPE=$(BUILD_TYPE) +install: $(BUILDDIR) man/man1/cmark.1 + make -p $(BUILDDIR) --target install + debug: mkdir -p $(BUILDDIR); \ cd $(BUILDDIR); \ cmake .. -DCMAKE_BUILD_TYPE=Debug; \ - cmake --build . + make tarball: spec.html rm -rf $(PKGDIR); \ |