2001-09-09 22:55:41 -04:00
|
|
|
## Process this with automake to create Makefile.in
|
|
|
|
|
|
|
|
AUTOMAKE_OPTIONS = foreign
|
|
|
|
|
2003-06-17 17:10:56 -04:00
|
|
|
EXTRA_DIST = icecast.xml.in
|
|
|
|
|
|
|
|
sysconf_DATA = icecast.xml
|
|
|
|
|
|
|
|
edit = sed -e 's,@pkgdatadir\@,$(pkgdatadir),g' \
|
|
|
|
-e 's,@localstatedir\@,$(localstatedir),g' \
|
|
|
|
-e 's,@PACKAGE\@,$(PACKAGE),g'
|
|
|
|
|
|
|
|
icecast.xml: $(srcdir)/icecast.xml.in
|
|
|
|
$(edit) $(srcdir)/icecast.xml.in > icecast.xml
|
2001-09-09 22:55:41 -04:00
|
|
|
|
|
|
|
debug:
|
2002-08-09 11:55:02 -04:00
|
|
|
$(MAKE) all CFLAGS="@DEBUG@"
|
2001-09-09 22:55:41 -04:00
|
|
|
|
|
|
|
profile:
|
2002-08-09 11:55:02 -04:00
|
|
|
$(MAKE) all CFLAGS="@PROFILE@"
|
2001-09-09 22:55:41 -04:00
|
|
|
|