blob: 46f82e9615f68a0f98cc6e6541989260085ddd96 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
all:
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
|