diff options
author | Max Rees <maxcrees@me.com> | 2020-12-29 21:24:04 -0500 |
---|---|---|
committer | Max Rees <maxcrees@me.com> | 2020-12-29 21:24:04 -0500 |
commit | ab47017a39ebffc01ed7765813d9caeeb5d288b5 (patch) | |
tree | 89fe7628f1c7dbaf21d59e9dee89958dd2cc777a /src/Makefile | |
parent | 3890035c21e40aca7d5360bfc40e4b7ab9f10c50 (diff) | |
download | apk-tools-for-alpine/pregen-help.tar.gz apk-tools-for-alpine/pregen-help.tar.bz2 apk-tools-for-alpine/pregen-help.tar.xz apk-tools-for-alpine/pregen-help.zip |
Allow build to continue if help.h/manpages are already generatedfor-alpine/pregen-help
This would allow future distribution of tarballs that already have
help.h and the doc/*.[0-9] manpages pre-generated. Such a tarball could
then be built successfully with LUA=no.
Diffstat (limited to 'src/Makefile')
-rw-r--r-- | src/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/Makefile b/src/Makefile index 186823f..7d3255d 100644 --- a/src/Makefile +++ b/src/Makefile @@ -97,7 +97,7 @@ else cmd_genhelp = echo \\\#define NO_HELP > $@ endif -$(obj)/help.h: $(src)/genhelp.lua $(wildcard doc/apk*.8.scd) FORCE +$(obj)/help.h: $(src)/genhelp.lua $(wildcard doc/apk*.8.scd) $(call if_changed,genhelp) CFLAGS_help.o := -I$(obj) |