mirror of
https://github.com/clearlinux/psstop.git
synced 2026-08-18 21:36:01 +00:00
f2e96c9511
This uses `ronn` to create a developer-maintained manual page. The output is pushed into git, such that a normal distribution compilation does not need to have `ronn` installed to do a full install. Developers will need to check in the psstop.1 file after modifying the psstop.1.md file
16 lines
245 B
Makefile
16 lines
245 B
Makefile
EXTRA_DIST = COPYING psstop.spec psstop.1.md
|
|
|
|
bin_PROGRAMS = psstop
|
|
|
|
psstop_SOURCES = src/main.c
|
|
|
|
|
|
AM_CPPFLAGS = $(AM_CFLAGS) $(glib_CFLAGS)
|
|
psstop_LDADD = $(glib_LIBS)
|
|
|
|
psstop.1: psstop.1.md
|
|
ronn -r $< --pipe > $@
|
|
|
|
dist_man_MANS = \
|
|
psstop.1
|