mirror of
https://github.com/alsa-project/alsa-utils
synced 2024-11-08 22:55:42 +01:00
bbd71560bc
Added the check of xmlto program in configure script. Also added --disable-xmlto configure option for systems with a broken or older xmlto that doesn't work properly. Signed-off-by: Takashi Iwai <tiwai@suse.de>
14 lines
320 B
Makefile
14 lines
320 B
Makefile
SUBDIRS = init
|
|
|
|
sbin_PROGRAMS=alsactl
|
|
man_MANS=alsactl.1
|
|
if USE_XMLTO
|
|
man_MANS += alsactl_init.7
|
|
endif
|
|
EXTRA_DIST=alsactl.1 alsactl_init.xml
|
|
|
|
alsactl_SOURCES=alsactl.c state.c utils.c init_parse.c
|
|
noinst_HEADERS=alsactl.h list.h init_sysdeps.c init_utils_string.c init_utils_run.c init_sysfs.c
|
|
|
|
%.7: %.xml
|
|
xmlto man $?
|