mirror of
https://github.com/owntone/owntone-server.git
synced 2025-01-01 01:53:23 -05:00
39 lines
1.1 KiB
Makefile
39 lines
1.1 KiB
Makefile
# $Id$
|
|
#
|
|
|
|
BUILT_SOURCES=parser.h
|
|
AM_YFLAGS=-d
|
|
|
|
sbin_PROGRAMS = mt-daapd
|
|
|
|
if COND_REND_POSIX
|
|
PRENDSRC=mDNS.c mDNSClientAPI.h mDNSDebug.h mDNSPosix.c mDNSUNP.c rend-posix.c mDNSPlatformFunctions.h rend-unix.c
|
|
endif
|
|
|
|
if COND_REND_HOWL
|
|
HRENDSRC=rend-howl.c rend-unix.c
|
|
endif
|
|
|
|
if COND_REND_OSX
|
|
ORENDSRC=rend-osx.c rend-unix.c
|
|
endif
|
|
|
|
if COND_OGGVORBIS
|
|
OGGVORBISSRC=ogg.c
|
|
endif
|
|
|
|
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 \
|
|
daap-proto.c daap-proto.h daap.c daap.h db-gdbm.c db-memory.h \
|
|
mp3-scanner.h mp3-scanner.c playlist.c playlist.h \
|
|
rend-unix.h lexer.l parser.y strcasestr.c strcasestr.h strsep.c \
|
|
redblack.c redblack.h dynamic-art.c dynamic-art.h query.c query.h \
|
|
atoll.c atoll.h \
|
|
$(PRENDSRC) $(ORENDSRC) $(HRENDSRC) $(OGGVORBISSRC)
|
|
|
|
EXTRA_DIST = mDNS.c mDNSClientAPI.h mDNSDebug.h mDNSPosix.c \
|
|
mDNSUNP.c mDNSPlatformFunctions.h mDNSPosix.h mDNSUNP.h \
|
|
rend-howl.c rend-posix.c rend-osx.c db-memory.c \
|
|
db-gdbm.c strcasestr.h redblack.c redblack.h db-memory.c \
|
|
parser.h ogg.c
|