espeakup/Makefile.am
William Hubbs c7ae47dfe5 add experimental support for building a static binary
This is done by adding a --enable-standalone switch to the configure
script.
2010-06-02 12:11:05 -05:00

14 lines
277 B
Makefile

bin_PROGRAMS = espeakup
espeakup_SOURCES = espeakup.c espeakup.h cli.c espeak.c queue.c queue.h signal.c softsynth.c
if ALSA
espeakup_SOURCES += alsa.c
else
espeakup_SOURCES += portaudio.c
endif
if STANDALONE
espeakup_LDFLAGS = -all-static
endif
dist_man8_MANS = espeakup.8