mirror of
https://gitlab.xiph.org/xiph/icecast-server.git
synced 2025-02-02 15:07:36 -05:00
e19a7af1b1
ATTN Mike! make install now installs the xsl files in pkgdatadir ($prefix/share/icecast) web and admin directories, and builds icecast.xml accordingly. icecast.xml is now installed in $sysconfdir/etc, and IMHO icecast should attempt to find a config file there, and only demand one on the command line if it can't. svn path=/trunk/icecast/; revision=4956
22 lines
434 B
Makefile
22 lines
434 B
Makefile
## Process this with automake to create Makefile.in
|
|
|
|
AUTOMAKE_OPTIONS = foreign
|
|
|
|
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
|
|
|
|
debug:
|
|
$(MAKE) all CFLAGS="@DEBUG@"
|
|
|
|
profile:
|
|
$(MAKE) all CFLAGS="@PROFILE@"
|
|
|