mirror of
https://github.com/mikf/gallery-dl.git
synced 2024-11-22 10:42:34 +01:00
089923e3dd
… a man-page containing all of gallery-dl's configuration file options. This implementation relies on Python dicts preserving their insertion order. Python 3.4 and 3.5 need to use OrderedDict or they produce randomly ordered man-page sections. The man-page formatting is a bit rough around the edges, but it works for the most part. The only real "problem" are inline-links, but it's better if they are left in there.
39 lines
1.1 KiB
Makefile
39 lines
1.1 KiB
Makefile
|
|
PREFIX ?= /usr/local
|
|
BINDIR ?= $(PREFIX)/bin
|
|
MANDIR ?= $(PREFIX)/man
|
|
SHAREDIR ?= $(PREFIX)/share
|
|
PYTHON ?= /usr/bin/env python3
|
|
|
|
# set SYSCONFDIR to /etc if PREFIX=/usr or PREFIX=/usr/local
|
|
SYSCONFDIR = $(shell if [ $(PREFIX) = /usr -o $(PREFIX) = /usr/local ]; then echo /etc; else echo $(PREFIX)/etc; fi)
|
|
|
|
all: gallery-dl.1 gallery-dl.conf.5 gallery-dl.bash_completion docs/supportedsites.rst
|
|
|
|
clean:
|
|
$(RM) gallery-dl.1 gallery-dl.conf.5 gallery-dl.bash_completion
|
|
$(RM) -r build/
|
|
|
|
install: gallery-dl.1 gallery-dl.conf.5 gallery-dl.bash_completion
|
|
$(PYTHON) setup.py install
|
|
|
|
release: gallery-dl.1 gallery-dl.conf.5 gallery-dl.bash_completion docs/supportedsites.rst
|
|
scripts/release.sh
|
|
|
|
test:
|
|
scripts/run_tests.sh
|
|
|
|
.PHONY: all clean install release test
|
|
|
|
docs/supportedsites.rst: gallery_dl/*/*.py scripts/supportedsites.py
|
|
$(PYTHON) scripts/supportedsites.py
|
|
|
|
gallery-dl.1: gallery_dl/option.py scripts/man.py
|
|
$(PYTHON) scripts/man.py
|
|
|
|
gallery-dl.conf.5: docs/configuration.rst scripts/man.py
|
|
$(PYTHON) scripts/man.py
|
|
|
|
gallery-dl.bash_completion: gallery_dl/option.py scripts/bash_completion.py
|
|
$(PYTHON) scripts/bash_completion.py
|