2003-10-30 22:42:53 +00:00
|
|
|
# $Id$
|
|
|
|
#
|
2003-12-04 23:20:51 +00:00
|
|
|
|
2003-10-30 22:42:53 +00:00
|
|
|
sbin_PROGRAMS = mt-daapd
|
2005-02-27 03:34:07 +00:00
|
|
|
bin_PROGRAMS = wavstreamer
|
2003-10-30 22:42:53 +00:00
|
|
|
|
2003-11-17 16:37:39 +00:00
|
|
|
if COND_REND_POSIX
|
2005-05-01 05:09:02 +00:00
|
|
|
PRENDSRC=mDNS.c mDNSClientAPI.h mDNSDebug.h mDNSPosix.c mDNSUNP.c \
|
|
|
|
rend-posix.c mDNSPlatformFunctions.h rend-unix.c
|
2003-11-17 16:37:39 +00:00
|
|
|
endif
|
2003-10-30 22:42:53 +00:00
|
|
|
|
2003-11-17 16:37:39 +00:00
|
|
|
if COND_REND_HOWL
|
2004-10-30 16:42:20 +00:00
|
|
|
HRENDSRC=rend-howl.c rend-unix.c
|
2003-11-17 16:37:39 +00:00
|
|
|
endif
|
2003-10-30 22:42:53 +00:00
|
|
|
|
2003-12-01 05:27:54 +00:00
|
|
|
if COND_REND_OSX
|
2004-10-30 16:42:20 +00:00
|
|
|
ORENDSRC=rend-osx.c rend-unix.c
|
2003-12-01 05:27:54 +00:00
|
|
|
endif
|
|
|
|
|
2004-12-06 03:06:12 +00:00
|
|
|
if COND_OGGVORBIS
|
2005-05-29 23:44:23 +00:00
|
|
|
OGGVORBISSRC=scan-ogg.c
|
2004-12-06 03:06:12 +00:00
|
|
|
endif
|
|
|
|
|
2005-02-27 00:41:55 +00:00
|
|
|
if COND_FLAC
|
2005-05-29 23:44:23 +00:00
|
|
|
FLACSRC=scan-flac.c
|
2005-02-27 00:41:55 +00:00
|
|
|
endif
|
|
|
|
|
2005-11-02 04:45:25 +00:00
|
|
|
if COND_MUSEPACK
|
|
|
|
MUSEPACKSRC=scan-mpc.c
|
|
|
|
endif
|
|
|
|
|
2005-03-01 04:19:27 +00:00
|
|
|
if COND_SQLITE
|
2006-01-04 20:30:44 +00:00
|
|
|
SQLITEDB=db-sql.c db-sql.h db-sql-sqlite2.c db-sql-sqlite2.h
|
2005-03-01 04:19:27 +00:00
|
|
|
endif
|
|
|
|
|
2005-02-27 03:34:07 +00:00
|
|
|
wavstreamer_SOURCES = wavstreamer.c
|
|
|
|
|
2003-11-17 16:37:39 +00:00
|
|
|
mt_daapd_SOURCES = main.c daapd.h rend.h uici.c uici.h webserver.c \
|
|
|
|
webserver.h configfile.c configfile.h err.c err.h restart.c restart.h \
|
2005-05-01 05:09:02 +00:00
|
|
|
mp3-scanner.h mp3-scanner.c rend-unix.h strcasestr.c strcasestr.h \
|
|
|
|
strsep.c dynamic-art.c dynamic-art.h query.c query.h ssc.c ssc.h \
|
2005-05-29 23:44:23 +00:00
|
|
|
db-generic.c db-generic.h dispatch.c dispatch.h \
|
2005-10-24 06:14:36 +00:00
|
|
|
rxml.c rxml.h redblack.c redblack.h scan-mp3.c \
|
2005-06-01 14:40:28 +00:00
|
|
|
scan-xml.c scan-wma.c scan-aac.c scan-aac.h scan-wav.c scan-url.c \
|
2005-11-07 05:58:05 +00:00
|
|
|
smart-parser.c smart-parser.h xml-rpc.c xml-rpc.h \
|
2005-03-01 04:19:27 +00:00
|
|
|
$(PRENDSRC) $(ORENDSRC) $(HRENDSRC) $(OGGVORBISSRC) $(FLACSRC) \
|
2005-11-02 04:45:25 +00:00
|
|
|
$(MUSEPACKSRC) $(SQLITEDB)
|
2003-10-30 22:42:53 +00:00
|
|
|
|
2004-03-29 17:55:17 +00:00
|
|
|
EXTRA_DIST = mDNS.c mDNSClientAPI.h mDNSDebug.h mDNSPosix.c \
|
|
|
|
mDNSUNP.c mDNSPlatformFunctions.h mDNSPosix.h mDNSUNP.h \
|
2005-11-02 04:45:25 +00:00
|
|
|
rend-howl.c rend-posix.c rend-osx.c scan-mpc.c \
|
2005-05-29 23:44:23 +00:00
|
|
|
strcasestr.h scan-ogg.c scan-flac.c dbs-sqlite.c dbs-sqlite.h
|