File: Makefile.am

package info (click to toggle)
gst123 0.4.1-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 788 kB
  • sloc: cpp: 3,353; sh: 1,256; ansic: 98; makefile: 30
file content (14 lines) | stat: -rw-r--r-- 340 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
dist_man_MANS = gst123.1

DOCS_DIR = ~/public_html/gst123/docs-$(VERSION)

rebuild-manpage:
	a2x -f manpage gst123.1.txt
	asciidoc -b xhtml11 -d manpage gst123.1.txt

publish-docs:
	mkdir -p $(DOCS_DIR)
	for i in $(dist_man_MANS); do \
	  cp $$i.html $(DOCS_DIR); \
        done
	cd $(DOCS_DIR) && find . -type f -print0 | xargs -0 git add