-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathMakefile.am
More file actions
26 lines (17 loc) · 814 Bytes
/
Makefile.am
File metadata and controls
26 lines (17 loc) · 814 Bytes
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
# Process this file with automake to produce Makefile.in
bin_PROGRAMS = speechd-up
speechd_up_SOURCES = speechd-up.c options.c options.h log.c log.h configuration.c configuration.h
speechd_up_CFLAGS = -DPIDPATH=\"@pidpath@\" -DLOGPATH=\"@logpath@\" -DSYS_CONF=\"@sysconfdir@\" -DVERSION=\"$(VERSION)\" -Wall
speechd_up_LDADD = -ldotconf
COMPILE = $(CC) $(speechd_up_CFLAGS) $(DEFS) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS)
EXTRA_DIST= ChangeLog NEWS TODO AUTHORS COPYING INSTALL README speechd-up.conf version.sh build.sh
sysconf_DATA = speechd-up.conf
info_TEXINFOS = speechd-up.texi
SUFFIXES = .html
html_docs = speechd-up.html
HTMLDIR = htmldoc
# MAINTAINERCLEANFILES = speechd-up/*
.texi.html:
$(MAKEINFO) --html -o $(HTMLDIR) $(info_TEXINFOS) $<
.PHONY: html
html: $(html_docs)