mirror of
https://github.com/johnkerl/miller.git
synced 2026-01-23 02:14:13 +00:00
follow-on from doc/ -> docs/ for travis build
This commit is contained in:
parent
3f0da2a46f
commit
0b3a94d510
2 changed files with 7 additions and 7 deletions
|
|
@ -3,4 +3,4 @@ AUTOMAKE_OPTIONS=foreign
|
|||
|
||||
EXTRA_DIST= LICENSE.txt README.md
|
||||
|
||||
SUBDIRS=c doc
|
||||
SUBDIRS=c
|
||||
|
|
|
|||
|
|
@ -9,25 +9,25 @@ MANDIR ?= /usr/share/man
|
|||
DESTDIR ?=
|
||||
|
||||
all: c manpage
|
||||
devall: c install doc
|
||||
devall: c install docs
|
||||
# TODO: the install target exists to put most-recent mlr executable in the
|
||||
# path to be picked up by the mlr-execs in the docs dir. better would be to
|
||||
# export PATH here with ./c at its head.
|
||||
c: .always
|
||||
make -C c -f Makefile.no-autoconfig top
|
||||
doc: .always
|
||||
cd doc && poki
|
||||
docs: .always
|
||||
cd docs && make html
|
||||
install: .always
|
||||
make -C c -f Makefile.no-autoconfig install
|
||||
install -d -m 0755 $(DESTDIR)/$(MANDIR)
|
||||
install -m 0644 doc/miller.1 $(DESTDIR)/$(MANDIR)
|
||||
install -m 0644 docs/miller.1 $(DESTDIR)/$(MANDIR)
|
||||
clean: .always
|
||||
make -C c -f Makefile.no-autoconfig clean
|
||||
.PHONY: manpage
|
||||
# OSX:
|
||||
# * brew install asciidoc
|
||||
# * export XML_CATALOG_FILES=/usr/local/etc/xml/catalog
|
||||
manpage: doc/miller.1.txt
|
||||
( cd doc && a2x -d manpage -f manpage miller.1.txt )
|
||||
manpage: docs/miller.1.txt
|
||||
( cd docs && a2x -d manpage -f manpage miller.1.txt )
|
||||
.always:
|
||||
@true
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue