2003-10-30 17:42:53 -05:00
|
|
|
# $Id$
|
|
|
|
#
|
2003-12-04 18:20:51 -05:00
|
|
|
|
|
|
|
BUILT_SOURCES=parser.h
|
|
|
|
AM_YFLAGS=-d
|
|
|
|
|
2003-10-30 17:42:53 -05:00
|
|
|
sbin_PROGRAMS = mt-daapd
|
|
|
|
|
2004-03-03 01:50:09 -05:00
|
|
|
if COND_USE_GDBM
|
2004-03-13 19:11:34 -05:00
|
|
|
DBFILE=db-gdbm.c redblack.c
|
2004-03-03 01:50:09 -05:00
|
|
|
else
|
|
|
|
DBFILE=db-memory.c
|
|
|
|
endif
|
|
|
|
|
2003-11-17 11:37:39 -05:00
|
|
|
if COND_REND_POSIX
|
2003-12-29 14:46:58 -05:00
|
|
|
RENDSRC=mdns/mDNS.c mdns/mDNSClientAPI.h mdns/mDNSDebug.h mdns/mDNSPosix.c mdns/mDNSUNP.c rend-posix.c mdns/mDNSPlatformFunctions.h
|
2003-11-17 11:37:39 -05:00
|
|
|
endif
|
2003-10-30 17:42:53 -05:00
|
|
|
|
2003-11-17 11:37:39 -05:00
|
|
|
if COND_REND_HOWL
|
|
|
|
RENDSRC=rend-howl.c
|
|
|
|
endif
|
2003-10-30 17:42:53 -05:00
|
|
|
|
2003-12-01 00:27:54 -05:00
|
|
|
if COND_REND_OSX
|
|
|
|
RENDSRC=rend-osx.c
|
|
|
|
endif
|
|
|
|
|
2003-11-17 11:37:39 -05: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 \
|
2004-03-03 01:50:09 -05:00
|
|
|
daap-proto.c daap-proto.h daap.c daap.h $(DBFILE) db-memory.h \
|
2004-01-19 23:41:20 -05:00
|
|
|
mp3-scanner.h mp3-scanner.c playlist.c playlist.h rend-unix.c rend-unix.h \
|
2004-03-16 00:24:54 -05:00
|
|
|
lexer.l parser.y $(RENDSRC) strcasestr.c strcasestr.h strsep.c
|
2003-10-30 17:42:53 -05:00
|
|
|
|
2003-11-17 11:37:39 -05:00
|
|
|
EXTRA_DIST = mdns/mDNS.c mdns/mDNSClientAPI.h mdns/mDNSDebug.h mdns/mDNSPosix.c \
|
2003-12-29 14:46:58 -05:00
|
|
|
mdns/mDNSUNP.c mdns/mDNSPlatformFunctions.h mdns/mDNSPosix.h mdns/mDNSUNP.h \
|
2004-03-03 01:50:09 -05:00
|
|
|
rend-howl.c rend-posix.c rend-osx.c strcasestr.c strsep.c db-memory.c \
|
2004-03-18 23:37:26 -05:00
|
|
|
db-gdbm.c strcasestr.h redblack.c redblack.h
|
|
|
|
|
2004-01-12 23:29:30 -05:00
|
|
|
|
2003-10-30 17:42:53 -05:00
|
|
|
|
2003-11-09 22:58:09 -05:00
|
|
|
|