summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorJohn MacFarlane <jgm@berkeley.edu>2014-11-12 21:12:00 -0800
committerJohn MacFarlane <jgm@berkeley.edu>2014-11-12 21:12:00 -0800
commit4467216e9fbf9eaa94ac4178b2400dc481c57ba0 (patch)
treeff9faa307a813100bc1ae1c67c1cd316a03e77a2 /Makefile
parent34840a77d3cb48d2d7490b7cce95d7cdd66cc510 (diff)
Fixed bug in install target.
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index b41ff55..dcc317c 100644
--- a/Makefile
+++ b/Makefile
@@ -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); \