owntone-server/src/Makefile.am

80 lines
2.1 KiB
Makefile
Raw Normal View History

2003-10-30 17:42:53 -05:00
# $Id$
#
SUBDIRS=plugins
2003-12-04 18:20:51 -05:00
2003-10-30 17:42:53 -05:00
sbin_PROGRAMS = mt-daapd
bin_PROGRAMS = wavstreamer mtd-update
2003-10-30 17:42:53 -05:00
2003-11-17 11:37:39 -05:00
if COND_REND_POSIX
2005-05-01 01:09:02 -04:00
PRENDSRC=mDNS.c mDNSClientAPI.h mDNSDebug.h mDNSPosix.c mDNSUNP.c \
rend-posix.c mDNSPlatformFunctions.h rend-unix.c
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
HRENDSRC=rend-howl.c rend-unix.c
2003-11-17 11:37:39 -05:00
endif
2003-10-30 17:42:53 -05:00
2003-12-01 00:27:54 -05:00
if COND_REND_OSX
ORENDSRC=rend-osx.c rend-unix.c
2003-12-01 00:27:54 -05:00
endif
if COND_OGGVORBIS
OGGVORBISSRC=scan-ogg.c
endif
if COND_FLAC
FLACSRC=scan-flac.c
endif
2005-11-01 23:45:25 -05:00
if COND_MUSEPACK
MUSEPACKSRC=scan-mpc.c
endif
2005-02-28 23:19:27 -05:00
if COND_SQLITE
2006-01-06 12:43:38 -05:00
SQLITEDB=db-sql-sqlite2.c db-sql-sqlite2.h
2005-02-28 23:19:27 -05:00
endif
2006-01-06 12:43:38 -05:00
if COND_SQLITE3
SQLITE3DB=db-sql-sqlite3.c db-sql-sqlite3.h
endif
if COND_SQL
SQLDB=db-sql.c db-sql.h
endif
2006-03-26 20:48:43 -05:00
if COND_GDBM
GDBM=db-gdbm.c db-gdbm.h
endif
2006-01-06 12:43:38 -05:00
2006-04-10 03:38:26 -04:00
mtd_update_SOURCES = mtd-update.c conf.c conf.h ll.c ll.h \
db-sql.c db-sql.h db-generic.c db-generic.h smart-parser.c \
smart-parser.h err.c err.h os-unix.c os.h xml-rpc.c xml-rpc.h \
restart.c restart.h uici.c uici.h ssc.c ssc.h \
2006-04-21 02:43:41 -04:00
webserver.c webserver.h compat.c compat.h \
$(PRENDSRC) $(ORENDSRC) $(HRENDSRC) \
2006-04-10 03:38:26 -04:00
$(SQLITEDB) $(SQLITE3DB)
2005-02-26 22:34:07 -05:00
wavstreamer_SOURCES = wavstreamer.c
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 \
mp3-scanner.h mp3-scanner.c rend-unix.h \
dynamic-art.c dynamic-art.h ssc.c ssc.h \
db-generic.c db-generic.h dispatch.c dispatch.h \
2006-01-12 03:10:48 -05:00
rxml.c rxml.h redblack.c redblack.h scan-mp3.c scan-mp4.c \
2005-06-01 10:40:28 -04:00
scan-xml.c scan-wma.c scan-aac.c scan-aac.h scan-wav.c scan-url.c \
smart-parser.c smart-parser.h xml-rpc.c xml-rpc.h \
os.h ll.c ll.h conf.c conf.h compat.c compat.h \
2006-04-19 04:32:18 -04:00
os-unix.h os-unix.c os.h plugin.c plugin.h \
2005-02-28 23:19:27 -05:00
$(PRENDSRC) $(ORENDSRC) $(HRENDSRC) $(OGGVORBISSRC) $(FLACSRC) \
2006-03-26 20:48:43 -05:00
$(MUSEPACKSRC) $(SQLITEDB) $(SQLITE3DB) $(SQLDB) $(GDBM)
2003-10-30 17:42:53 -05:00
2004-03-29 12:55:17 -05:00
EXTRA_DIST = mDNS.c mDNSClientAPI.h mDNSDebug.h mDNSPosix.c \
mDNSUNP.c mDNSPlatformFunctions.h mDNSPosix.h mDNSUNP.h \
2005-11-01 23:45:25 -05:00
rend-howl.c rend-posix.c rend-osx.c scan-mpc.c \
2006-02-26 03:46:24 -05:00
scan-ogg.c scan-flac.c db-sql.c db-sql.h \
2006-01-06 12:43:38 -05:00
db-sql-sqlite2.h db-sql-sqlite2.c \
2006-02-26 03:46:24 -05:00
db-sql-sqlite3.h db-sql-sqlite3.c \
w32-eventlog.c w32-eventlog.h w32-service.c w32-service.h \
2006-03-26 20:48:43 -05:00
os-win32.h os-win32.c win32.h db-gdbm.c db-gdbm.h