2001-09-09 22:21:46 -04:00
|
|
|
## Process this with automake to create Makefile.in
|
|
|
|
|
|
|
|
AUTOMAKE_OPTIONS = foreign
|
|
|
|
|
|
|
|
SUBDIRS = avl thread httpp net log timing
|
|
|
|
|
|
|
|
bin_PROGRAMS = icecast
|
|
|
|
|
2003-07-20 22:23:41 -04:00
|
|
|
noinst_HEADERS = admin.h cfgfile.h os.h logging.h sighandler.h connection.h global.h\
|
2002-08-05 10:48:04 -04:00
|
|
|
util.h slave.h source.h stats.h refbuf.h client.h format.h format_vorbis.h\
|
2003-03-05 08:03:35 -05:00
|
|
|
compat.h format_mp3.h fserve.h xslt.h geturl.h yp.h event.h
|
2003-07-20 22:23:41 -04:00
|
|
|
icecast_SOURCES = cfgfile.c main.c logging.c sighandler.c connection.c global.c\
|
2002-08-05 10:48:04 -04:00
|
|
|
util.c slave.c source.c stats.c refbuf.c client.c format.c format_vorbis.c\
|
2003-03-27 12:10:14 -05:00
|
|
|
format_mp3.c xslt.c fserve.c event.c admin.c
|
|
|
|
EXTRA_icecast_SOURCES = geturl.c yp.c
|
2002-07-23 11:15:11 -04:00
|
|
|
|
2003-07-20 22:23:41 -04:00
|
|
|
icecast_LDADD = @ICECAST_OPTIONAL@ net/libicenet.la thread/libicethread.la \
|
|
|
|
httpp/libicehttpp.la log/libicelog.la avl/libiceavl.la \
|
|
|
|
timing/libicetiming.la @XIPH_LIBS@
|
|
|
|
|
|
|
|
AM_CFLAGS = @XIPH_CFLAGS@
|
|
|
|
AM_CPPFLAGS = @XIPH_CPPFLAGS@
|
2001-10-21 11:25:45 -04:00
|
|
|
|
2001-09-09 22:21:46 -04:00
|
|
|
|
|
|
|
debug:
|
2003-07-20 22:23:41 -04:00
|
|
|
$(MAKE) all CFLAGS="@DEBUG@"
|
2001-09-09 22:21:46 -04:00
|
|
|
|
|
|
|
profile:
|
2003-07-20 22:23:41 -04:00
|
|
|
$(MAKE) all CFLAGS="@PROFILE@"
|
2001-09-09 22:21:46 -04:00
|
|
|
|