diff options
author | John MacFarlane <jgm@berkeley.edu> | 2014-11-12 21:12:00 -0800 |
---|---|---|
committer | John MacFarlane <jgm@berkeley.edu> | 2014-11-12 21:12:00 -0800 |
commit | 4467216e9fbf9eaa94ac4178b2400dc481c57ba0 (patch) | |
tree | ff9faa307a813100bc1ae1c67c1cd316a03e77a2 /Makefile | |
parent | 34840a77d3cb48d2d7490b7cce95d7cdd66cc510 (diff) |
Fixed bug in install target.
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -25,7 +25,7 @@ $(BUILDDIR): check cmake .. -DCMAKE_BUILD_TYPE=$(BUILD_TYPE) install: $(BUILDDIR) man/man1/cmark.1 - make -p $(BUILDDIR) --target install + make -C $(BUILDDIR) install debug: mkdir -p $(BUILDDIR); \ |