diff options
author | shennetsind <ind@henn.et> | 2013-09-17 09:05:05 -0300 |
---|---|---|
committer | shennetsind <ind@henn.et> | 2013-09-17 09:05:05 -0300 |
commit | 2884b361c247a66c91188cfeb924e1794d58da55 (patch) | |
tree | 27e320d09fe8672dd141e7878273170d8ce25e44 /3rdparty/libconfig/extra/doc/Makefile | |
parent | 35c131c7ff945bff238e3e242e513b5fe42a0067 (diff) | |
parent | e6a9f7cfdb5ee6d27c12d35f2ecf8317595317b6 (diff) | |
download | hercules-2884b361c247a66c91188cfeb924e1794d58da55.tar.gz hercules-2884b361c247a66c91188cfeb924e1794d58da55.tar.bz2 hercules-2884b361c247a66c91188cfeb924e1794d58da55.tar.xz hercules-2884b361c247a66c91188cfeb924e1794d58da55.zip |
Merge branch 'master' of https://github.com/HerculesWS/Hercules
Diffstat (limited to '3rdparty/libconfig/extra/doc/Makefile')
-rw-r--r-- | 3rdparty/libconfig/extra/doc/Makefile | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/3rdparty/libconfig/extra/doc/Makefile b/3rdparty/libconfig/extra/doc/Makefile new file mode 100644 index 000000000..fd84597a6 --- /dev/null +++ b/3rdparty/libconfig/extra/doc/Makefile @@ -0,0 +1,18 @@ +HTMLS = libconfig.html +TEXINFOS = libconfig.texi +MAKEINFOHTML = $(MAKEINFO) --html +MAKEINFO = makeinfo + +all: html + +.SUFFIXES: .html .texi + +libconfig.html: $(TEXINFOS) + +clean: + @-test -z "$(HTMLS)" || rm -rf libconfig.html + +.PHONY: all clean html + +html: $(HTMLS) + $(MAKEINFOHTML) --no-split $(TEXINFOS) |