diff options
author | Ingo Schwarze <schwarze@openbsd.org> | 2021-09-20 10:14:34 +0000 |
---|---|---|
committer | Ingo Schwarze <schwarze@openbsd.org> | 2021-09-20 10:14:34 +0000 |
commit | 1bfb4b6abdfbcaa8f0d91fa9318216e22dda7cdf (patch) | |
tree | 635918629648da91ea1edb89646d4188ecd4ac8c /Makefile | |
parent | cd02ff702eb906795b08c9e07e73017203eb92e3 (diff) | |
download | mandoc-1bfb4b6abdfbcaa8f0d91fa9318216e22dda7cdf.tar.gz |
Create the link from ./man to ./mandoc in the "all" target rather than
in the "regress" target. That makes manual "cd regress && ./regress.pl"
a bit less fragile.
The idea came up in a conversation with Thomas Klausner <wiz at NetBSD>.
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -373,7 +373,7 @@ include Makefile.local # === DEPENDENCY HANDLING ============================================== -all: mandoc demandoc soelim $(BUILD_TARGETS) Makefile.local +all: mandoc man demandoc soelim $(BUILD_TARGETS) Makefile.local install: base-install $(INSTALL_TARGETS) @@ -502,7 +502,7 @@ uninstall: rm -f $(DESTDIR)$(INCLUDEDIR)/tbl.h [ ! -e $(DESTDIR)$(INCLUDEDIR) ] || rmdir $(DESTDIR)$(INCLUDEDIR) -regress: all man +regress: all cd regress && ./regress.pl regress-clean: |