1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27
|
# Process this file with automake to produce Makefile.in
bin_PROGRAMS = speechd-up
speechd_up_CFLAGS = -Wall
speechd_up_CPPFLAGS = -DLOGPATH=\"$(logpath)\" \
-DPIDPATH=\"$(pidpath)\" \
-DSYS_CONF=\"$(sysconfdir)\"
speechd_up_LDADD = $(DOTCONF_LIBS)
speechd_up_SOURCES = speechd-up.c\
options.c \
options.h \
log.c \
log.h \
configuration.c \
configuration.h
dist_sysconf_DATA = speechd-up.conf
info_TEXINFOS = speechd-up.texi
speechd_up_TEXINFOS = gpl.texi fdl.texi
speechd-up.1: speechd-up
help2man -n "Interface between Speech Dispatcher and SpeakUp" --output=$@ ./$<
man1_MANS = speechd-up.1
EXTRA_DIST = build.sh
|