File: Makefile

package info (click to toggle)
package-notes 0.17
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 128 kB
  • sloc: python: 218; perl: 97; ansic: 41; makefile: 29
file content (21 lines) | stat: -rw-r--r-- 473 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
all:

man: dlopen-notes.1

dlopen-notes.1: dlopen-notes.py docs/dlopen-description.man Makefile
	argparse-manpage 	\
		--output=docs/$@ 	\
		--pyfile=$< 	\
		--function=make_parser \
		--project-name=package-notes \
		--include=docs/dlopen-description.man

install:
	install -m 755 -D dlopen-notes.py $(DESTDIR)/usr/bin/dlopen-notes
	install -m 644 -D docs/dlopen-notes.1 $(DESTDIR)/usr/share/man/man1/dlopen-notes.1

check:
	make -C test check

clean:
	make -C test clean