1
0
mirror of https://gitlab.xiph.org/xiph/icecast-server.git synced 2024-06-16 06:15:24 +00:00
icecast-server/src/Makefile.am

162 lines
2.8 KiB
Makefile
Raw Normal View History

## Process this with automake to create Makefile.in
SUBDIRS = common/avl common/net common/thread common/httpp common/log common/timing
bin_PROGRAMS = icecast
2018-05-28 15:42:54 +00:00
noinst_HEADERS = \
icecasttypes.h \
2018-05-28 15:42:54 +00:00
admin.h \
resourcematch.h \
main.h \
2018-05-28 15:42:54 +00:00
cfgfile.h \
logging.h \
sighandler.h \
connection.h \
global.h \
util.h \
errors.h \
curl.h \
slave.h \
source.h \
stats.h \
refbuf.h \
client.h \
playlist.h \
compat.h \
fserve.h \
xslt.h \
yp.h \
md5.h \
digest.h \
2020-10-21 21:09:52 +00:00
prng.h \
2018-05-28 15:42:54 +00:00
matchfile.h \
tls.h \
refobject.h \
buffer.h \
module.h \
reportxml.h \
reportxml_helper.h \
2020-10-04 06:55:30 +00:00
json.h \
2020-10-04 09:44:43 +00:00
xml2json.h \
listensocket.h \
fastevent.h \
navigation.h \
2018-05-28 15:42:54 +00:00
event.h \
event_log.h \
event_exec.h \
event_url.h \
acl.h auth.h \
2018-05-28 15:42:54 +00:00
format.h \
format_ogg.h \
format_mp3.h \
format_ebml.h \
format_text.h \
2018-05-28 15:42:54 +00:00
format_vorbis.h \
format_theora.h \
format_flac.h \
format_speex.h \
format_midi.h \
format_kate.h \
format_skeleton.h \
format_opus.h
icecast_SOURCES = \
main.c \
cfgfile.c \
logging.c \
sighandler.c \
connection.c \
global.c \
util.c \
errors.c \
slave.c \
source.c \
stats.c \
refbuf.c \
client.c \
playlist.c \
xslt.c \
fserve.c \
admin.c \
resourcematch.c \
2018-05-28 15:42:54 +00:00
md5.c \
digest.c \
2020-10-21 21:09:52 +00:00
prng.c \
2018-05-28 15:42:54 +00:00
matchfile.c \
tls.c \
refobject.c \
buffer.c \
module.c \
reportxml.c \
reportxml_helper.c \
2020-10-04 06:55:30 +00:00
json.c \
2020-10-04 09:44:43 +00:00
xml2json.c \
listensocket.c \
fastevent.c \
navigation.c \
2018-05-28 15:42:54 +00:00
format.c \
format_ogg.c \
format_mp3.c \
format_midi.c \
format_flac.c \
format_ebml.c \
format_text.c \
2018-05-28 15:42:54 +00:00
format_kate.c \
format_skeleton.c \
format_opus.c \
event.c \
event_log.c \
event_exec.c \
acl.c \
auth.c \
auth_htpasswd.c \
auth_anonymous.c \
auth_static.c \
auth_enforce_auth.c
2018-05-28 15:42:54 +00:00
2017-11-11 22:45:06 +00:00
if HAVE_CURL
icecast_SOURCES += \
curl.c \
auth_url.c \
event_url.c
endif
2018-05-28 15:42:54 +00:00
2017-11-11 22:45:06 +00:00
if ENABLE_YP
icecast_SOURCES += yp.c
endif
2017-11-11 22:45:06 +00:00
if HAVE_OGG
icecast_SOURCES += format_vorbis.c
endif
2017-11-11 22:45:06 +00:00
if HAVE_THEORA
icecast_SOURCES += format_theora.c
endif
if HAVE_SPEEX
icecast_SOURCES += format_speex.c
endif
EXTRA_icecast_SOURCES = \
curl.c \
yp.c \
auth_url.c \
event_url.c \
format_vorbis.c \
format_theora.c \
format_speex.c
icecast_DEPENDENCIES = \
common/net/libicenet.la \
common/thread/libicethread.la \
common/httpp/libicehttpp.la \
common/log/libicelog.la \
common/avl/libiceavl.la \
common/timing/libicetiming.la
icecast_LDADD = $(icecast_DEPENDENCIES)
icecast_CPPFLAGS = $(AM_CPPFLAGS) -I$(srcdir)/common
include $(srcdir)/tests/Makefile.am