2004-07-11 14:09:05 -04:00
|
|
|
## Process this with automake to create Makefile.in
|
|
|
|
|
|
|
|
AUTOMAKE_OPTIONS = foreign
|
|
|
|
|
2005-01-26 16:32:58 -05:00
|
|
|
EXTRA_DIST = icecast.xml.in icecast_minimal.xml.in icecast_shoutcast_compat.xml.in icecast_auth.php
|
2004-11-15 12:20:19 -05:00
|
|
|
DISTCLEANFILES = icecast.xml.dist icecast_minimal.xml.dist icecast_shoutcast_compat.xml.dist
|
2004-07-11 14:09:05 -04:00
|
|
|
|
|
|
|
docdir = $(datadir)/$(PACKAGE)/doc
|
2004-11-15 12:20:19 -05:00
|
|
|
doc_DATA = icecast.xml.dist icecast_minimal.xml.dist icecast_shoutcast_compat.xml.dist
|
2004-07-11 14:09:05 -04:00
|
|
|
|
|
|
|
install-data-hook:
|
|
|
|
$(mkinstalldirs) $(DESTDIR)$(sysconfdir)
|
|
|
|
test -f $(DESTDIR)$(sysconfdir)/icecast.xml || \
|
|
|
|
$(INSTALL_DATA) icecast.xml.dist $(DESTDIR)$(sysconfdir)/icecast.xml
|
|
|
|
|
|
|
|
edit = sed -e 's,@pkgdatadir\@,$(pkgdatadir),g' \
|
|
|
|
-e 's,@localstatedir\@,$(localstatedir),g' \
|
|
|
|
-e 's,@PACKAGE\@,$(PACKAGE),g'
|
|
|
|
|
|
|
|
icecast.xml.dist: $(srcdir)/icecast.xml.in
|
|
|
|
$(edit) $(srcdir)/icecast.xml.in > icecast.xml.dist
|
|
|
|
|
2004-11-15 12:20:19 -05:00
|
|
|
icecast_minimal.xml.dist: $(srcdir)/icecast_minimal.xml.in
|
|
|
|
$(edit) $(srcdir)/icecast_minimal.xml.in > icecast_minimal.xml.dist
|
|
|
|
|
|
|
|
icecast_shoutcast_compat.xml.dist: $(srcdir)/icecast_shoutcast_compat.xml.in
|
|
|
|
$(edit) $(srcdir)/icecast_shoutcast_compat.xml.in > icecast_shoutcast_compat.xml.dist
|
|
|
|
|
2004-07-11 14:09:05 -04:00
|
|
|
debug:
|
|
|
|
$(MAKE) all CFLAGS="@DEBUG@"
|
|
|
|
|
|
|
|
profile:
|
|
|
|
$(MAKE) all CFLAGS="@PROFILE@"
|
|
|
|
|