mirror of
https://gitlab.xiph.org/xiph/icecast-server.git
synced 2024-11-03 04:17:17 -05:00
784fe52e85
Install icecast.xml.dist in doc Install as $(sysconfdir)/icecast.xml only if that file doesn't already exist. svn path=/trunk/icecast/; revision=4983
28 lines
662 B
Makefile
28 lines
662 B
Makefile
## Process this with automake to create Makefile.in
|
|
|
|
AUTOMAKE_OPTIONS = foreign
|
|
|
|
EXTRA_DIST = icecast.xml.in
|
|
|
|
docdir = $(datadir)/$(PACKAGE)/doc
|
|
doc_DATA = icecast.xml.dist
|
|
|
|
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
|
|
|
|
debug:
|
|
$(MAKE) all CFLAGS="@DEBUG@"
|
|
|
|
profile:
|
|
$(MAKE) all CFLAGS="@PROFILE@"
|
|
|