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
|
|
|
|
|
|
|
|
noinst_HEADERS = config.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\
|
2002-09-24 04:16:24 -04:00
|
|
|
compat.h format_mp3.h fserve.h xslt.h
|
2001-09-09 22:21:46 -04:00
|
|
|
icecast_SOURCES = config.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\
|
2002-08-18 01:06:58 -04:00
|
|
|
format_mp3.c xslt.c fserve.c
|
2002-07-23 11:15:11 -04:00
|
|
|
|
2001-09-09 22:21:46 -04:00
|
|
|
icecast_LDADD = net/libicenet.la thread/libicethread.la httpp/libicehttpp.la\
|
|
|
|
log/libicelog.la avl/libiceavl.la timing/libicetiming.la
|
2001-10-21 11:25:45 -04:00
|
|
|
|
2002-08-28 09:00:02 -04:00
|
|
|
LIBS = @LIBS@ @XSLT_LIBS@ -lpthread @SOCKET_LIBS@ @XML_LIBS@ @OGG_LIBS@ @VORBIS_LIBS@
|
|
|
|
CFLAGS = -g @CFLAGS@ @XML_CFLAGS@ @XSLT_CFLAGS@ @OGG_CFLAGS@ @VORBIS_CFLAGS@
|
2001-09-09 22:21:46 -04:00
|
|
|
|
|
|
|
INCLUDES = -I$(srcdir)/net -I$(srcdir)/thread -I$(srcdir)/avl -I$(srcdir)/httpp \
|
|
|
|
-I$(srcdir)/log -I$(srcdir)/timing
|
|
|
|
|
|
|
|
debug:
|
2002-08-09 02:52:07 -04:00
|
|
|
$(MAKE) all CFLAGS="@DEBUG@ @XML_CFLAGS@ @OGG_CFLAGS@ @VORBIS_CFLAGS@"
|
2001-09-09 22:21:46 -04:00
|
|
|
|
|
|
|
profile:
|
2002-08-09 02:52:07 -04:00
|
|
|
$(MAKE) all CFLAGS="@PROFILE@ @XML_CFLAGS@ @OGG_CFLAGS@ @VORBIS_CFLAGS@"
|
2001-09-09 22:21:46 -04:00
|
|
|
|