mirror of
https://gitlab.com/apparmor/apparmor.git
synced 2025-03-04 16:35:02 +01:00
21 lines
395 B
Makefile
21 lines
395 B
Makefile
## Process this file with automake to produce Makefile.in
|
|
|
|
POD2MAN = pod2man
|
|
|
|
man_MANS = aa_change_hat.2 aa_change_profile.2
|
|
|
|
PODS = $(subst .2,.pod,$(man_MANS))
|
|
|
|
EXTRA_DIST = $(man_MANS) $(PODS)
|
|
|
|
## delete man pages at maintainer-clean
|
|
BUILT_SOURCES = $(man_MANS)
|
|
|
|
%.2: %.pod
|
|
$(POD2MAN) \
|
|
--section=2 \
|
|
--release="NOVELL/SUSE" \
|
|
--center="AppArmor" \
|
|
--date="2007-07-27" \
|
|
$< > $@
|
|
$
|