diff options
author | Dave Reisner <dreisner@archlinux.org> | 2014-11-17 16:49:21 -0500 |
---|---|---|
committer | Dave Reisner <dreisner@archlinux.org> | 2014-11-17 16:49:21 -0500 |
commit | 05f41e89186c3b84f36f5f862e77319db744b128 (patch) | |
tree | 81bfa097debb8149deb3d9ce3616e14d8e66db5f | |
parent | 4ec012966a82dc8689eedf434f9a837175a302ef (diff) | |
download | expac-05f41e89186c3b84f36f5f862e77319db744b128.tar.xz |
reorder targets to ensure 'all' is the default
...and the manpage is generated
-rw-r--r-- | Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -17,10 +17,10 @@ expac_SOURCES = \ conf.c conf.h \ util.h -expac: $(expac_SOURCES) - all: expac doc +expac: $(expac_SOURCES) + doc: expac.1 expac.1: README.pod pod2man --section=1 --center="expac manual" --name="EXPAC" --release="expac $(VERSION)" $< $@ |