1
0
mirror of https://gitlab.xiph.org/xiph/icecast-server.git synced 2024-06-16 06:15:24 +00:00

Include configuration files in 'make dist'

svn path=/trunk/icecast/; revision=2002
This commit is contained in:
Jack Moffitt 2001-09-10 02:55:41 +00:00
parent 6009622745
commit 1d81d666cc
3 changed files with 14 additions and 2 deletions

View File

@ -2,7 +2,7 @@
AUTOMAKE_OPTIONS = foreign dist-zip
SUBDIRS = src
SUBDIRS = src conf
EXTRA_DIST = README AUTHORS COPYING

12
conf/Makefile.am Normal file
View File

@ -0,0 +1,12 @@
## Process this with automake to create Makefile.in
AUTOMAKE_OPTIONS = foreign
EXTRA_DIST = icecast.xml
debug:
$(MAKE) all CFLAGS="@DEBUG@"
profile:
$(MAKE) all CFLAGS="@PROFILE@"

View File

@ -103,4 +103,4 @@ AC_SUBST(DEBUG)
AC_SUBST(CFLAGS)
AC_SUBST(PROFILE)
AC_OUTPUT(Makefile src/Makefile src/avl/Makefile src/httpp/Makefile src/thread/Makefile src/log/Makefile src/net/Makefile src/timing/Makefile)
AC_OUTPUT(Makefile conf/Makefile src/Makefile src/avl/Makefile src/httpp/Makefile src/thread/Makefile src/log/Makefile src/net/Makefile src/timing/Makefile)