summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorDaniel Carl <danielcarl@gmx.de>2013-07-29 16:00:03 +0200
committerDaniel Carl <danielcarl@gmx.de>2013-07-29 16:00:03 +0200
commitebfb606b51658926a106bc30a5ee496cad711139 (patch)
tree9027eb802c1059453d6c7806b1583fa7de15e78e /Makefile
parent611f8ff8c73531fd8a0dfce2e8580ff527c4d2d4 (diff)
Removed vimb.1.txt to process manpage direct for install target.
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile6
1 files changed, 1 insertions, 5 deletions
diff --git a/Makefile b/Makefile
index 2f2192f..dea0043 100644
--- a/Makefile
+++ b/Makefile
@@ -2,7 +2,7 @@ include config.mk
-include $(DEPS)
-all: $(TARGET) man
+all: $(TARGET)
options:
@echo "$(PROJECT) build options:"
@@ -41,9 +41,6 @@ $(DTARGET): $(DOBJ)
@echo "${CC} $<"
@$(CC) -c -o $@ $< $(CPPFLAGS) $(DFLAGS)
-man:
- @$(MAKE) $(MFLAGS) -C doc man
-
install: $(TARGET)
install -d $(DESTDIR)$(BINDIR)
install -m 755 $(TARGET) $(DESTDIR)$(BINDIR)/$(TARGET)
@@ -54,7 +51,6 @@ uninstall:
@$(MAKE) $(MFLAGS) -C doc uninstall
clean:
- @$(MAKE) $(MFLAGS) -C doc clean
$(RM) src/*.o src/*.do src/hints.js.h $(TARGET) $(DTARGET)
dist: distclean