owntone-server/src/Makefile.am

147 lines
3.2 KiB
Makefile
Raw Normal View History

2009-04-01 12:59:32 -04:00
2009-06-12 05:09:58 -04:00
sbin_PROGRAMS = forked-daapd
2003-10-30 17:42:53 -05:00
if COND_FLAC
FLACSRC=scan-flac.c
endif
2005-11-01 23:45:25 -05:00
if COND_MUSEPACK
MUSEPACKSRC=scan-mpc.c
endif
if COND_ITUNES
ITUNESSRC=filescanner_itunes.c
endif
2010-04-04 06:46:24 -04:00
if COND_ALSA
ALSASRC=laudio_alsa.c
endif
2010-05-01 13:07:16 -04:00
if COND_OSS4
OSS4SRC=laudio_oss4.c
endif
GPERF_FILES = \
daap_query.gperf \
rsp_query.gperf \
dacp_prop.gperf
GPERF_PRODUCTS = \
daap_query_hash.c \
rsp_query_hash.c \
dacp_prop_hash.c
2009-06-02 09:51:38 -04:00
ANTLR_GRAMMARS = \
RSP.g RSP2SQL.g \
2009-06-02 09:51:38 -04:00
DAAP.g DAAP2SQL.g
ANTLR_SOURCES = \
RSPLexer.c RSPLexer.h RSPParser.c RSPParser.h \
RSP2SQL.c RSP2SQL.h \
2009-06-02 09:51:38 -04:00
DAAPLexer.c DAAPLexer.h DAAPParser.c DAAPParser.h \
DAAP2SQL.c DAAP2SQL.h
ANTLR_PRODUCTS =
2011-02-06 11:17:58 -05:00
forked_daapd_CPPFLAGS = -D_GNU_SOURCE \
2011-02-06 11:49:30 -05:00
-DDATADIR="\"$(pkgdatadir)\"" -DCONFDIR="\"$(sysconfdir)\"" \
-DSTATEDIR="\"$(localstatedir)\"" -DPKGLIBDIR="\"$(pkglibdir)\"" \
@OSS4CPPFLAGS@
forked_daapd_CFLAGS = \
2011-02-06 11:17:58 -05:00
@ZLIB_CFLAGS@ @AVAHI_CFLAGS@ @SQLITE3_CFLAGS@ @FFMPEG_CFLAGS@ \
@CONFUSE_CFLAGS@ @TAGLIB_CFLAGS@ @MINIXML_CFLAGS@ @LIBPLIST_CFLAGS@ \
@LIBGCRYPT_CFLAGS@ @GPG_ERROR_CFLAGS@ @ALSA_CFLAGS@
2009-06-12 05:09:58 -04:00
forked_daapd_LDADD = -lrt \
2011-02-06 11:17:58 -05:00
@ZLIB_LIBS@ @AVAHI_LIBS@ @SQLITE3_LIBS@ @FFMPEG_LIBS@ \
@CONFUSE_LIBS@ @FLAC_LIBS@ @TAGLIB_LIBS@ @LIBEVENT_LIBS@ \
@LIBAVL_LIBS@ @MINIXML_LIBS@ @ANTLR3C_LIBS@ @LIBPLIST_LIBS@ \
@LIBGCRYPT_LIBS@ @GPG_ERROR_LIBS@ @ALSA_LIBS@ @LIBUNISTRING@
2011-02-06 11:17:58 -05:00
2009-06-12 05:09:58 -04:00
forked_daapd_SOURCES = main.c \
2009-06-07 12:58:02 -04:00
db.c db.h \
2009-05-08 11:04:25 -04:00
logger.c logger.h \
conffile.c conffile.h \
filescanner.c filescanner.h \
filescanner_ffmpeg.c filescanner_urlfile.c filescanner_m3u.c $(ITUNESSRC) \
2010-09-18 10:29:06 -04:00
mdns_avahi.c mdns.h \
2010-01-15 13:38:21 -05:00
remote_pairing.c remote_pairing.h \
evhttp/http.c evhttp/evhttp.h \
evhttp/http-internal.h evhttp/log.h \
ffmpeg_url_evbuffer.c ffmpeg_url_evbuffer.h \
2009-04-22 15:25:41 -04:00
httpd.c httpd.h \
httpd_rsp.c httpd_rsp.h \
httpd_daap.c httpd_daap.h \
httpd_dacp.c httpd_dacp.h \
dmap_helpers.c dmap_helpers.h \
2009-05-01 09:31:59 -04:00
transcode.c transcode.h \
artwork.c artwork.h \
2009-04-30 08:25:52 -04:00
misc.c misc.h \
2010-04-04 06:46:24 -04:00
rng.c rng.h \
rsp_query.c rsp_query.h \
2009-06-02 09:51:38 -04:00
daap_query.c daap_query.h \
2010-04-04 06:46:24 -04:00
player.c player.h \
2010-05-01 13:07:16 -04:00
$(ALSASRC) $(OSS4SRC) laudio.h \
2010-04-04 06:46:24 -04:00
raop.c raop.h \
evrtsp/rtsp.c evrtp/evrtsp.h \
evrtsp/rtsp-internal.h evrtsp/log.h \
scan-wma.c \
$(FLACSRC) $(MUSEPACKSRC)
2003-10-30 17:42:53 -05:00
2009-06-12 05:09:58 -04:00
nodist_forked_daapd_SOURCES = \
2009-06-02 09:51:38 -04:00
$(ANTLR_SOURCES)
BUILT_SOURCES = \
$(GPERF_PRODUCTS)
2009-06-02 09:51:38 -04:00
EXTRA_DIST = \
$(ANTLR_GRAMMARS) \
scan-mpc.c \
2009-06-07 12:58:02 -04:00
scan-flac.c
2009-06-02 09:51:38 -04:00
CLEANFILES = \
$(GPERF_PRODUCTS)
2009-06-02 09:51:38 -04:00
# Let's help the dependencies a little.
rsp_query.c: RSPLexer.h RSPParser.h RSP2SQL.h
2009-06-02 09:51:38 -04:00
daap_query.c: DAAPLexer.h DAAPParser.h DAAP2SQL.h
# gperf construction rules
%_hash.c: %.gperf
if $(GPERF) $< > $@.tmp; then \
mv $@.tmp $@; \
elif $(GPERF) --version >/dev/null 2>&1; then \
rm $@.tmp; \
exit 1; \
else \
rm $@.tmp; \
touch $@; \
fi
# Support for building the parsers when ANTLR3 is available
if COND_ANTLR
2009-06-02 09:51:38 -04:00
SUFFIXES = .g .u
%.tokens %.c %Lexer.c %Parser.c %Lexer.h %Parser.h %.h: %.g
$(ANTLR) $(ANTLR_OPTIONS) $<
2009-06-02 09:51:38 -04:00
%.u: %.g
$(ANTLR) -depend $< > $@
2009-06-02 09:51:38 -04:00
@echo -n "ANTLR_PRODUCTS += " > $@.tmp
@grep : $@ | cut -d : -f 1 | tr -d ' ' | { while read f; do test "$$f" != "$<" && echo -n "$$f "; done } >> $@.tmp
@cat $@.tmp >> $@
@rm $@.tmp
2009-06-02 09:51:38 -04:00
clean-local:
rm -f $(ANTLR_PRODUCTS)
rm -f $(ANTLR_GRAMMARS:.g=.u)
2009-06-02 09:51:38 -04:00
else !COND_ANTLR
distclean-local:
rm -f $(ANTLR_SOURCES)
rm -f $(ANTLR_GRAMMARS:.g=.u)
endif
2009-06-02 09:51:38 -04:00
-include $(ANTLR_GRAMMARS:.g=.u)