summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
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