2015-02-27 13:39:01 -05:00
|
|
|
AUTOMAKE_OPTIONS = 1.10 foreign subdir-objects
|
2009-03-15 20:08:31 -04:00
|
|
|
ACLOCAL_AMFLAGS = -I m4
|
2004-01-30 12:19:45 -05:00
|
|
|
|
2015-05-06 17:45:52 -04:00
|
|
|
SUBDIRS = build-aux compat doc examples m4 src tests
|
2007-02-24 16:19:20 -05:00
|
|
|
|
2009-03-15 20:08:31 -04:00
|
|
|
dist_doc_DATA = COPYING NEWS README
|
2007-02-24 16:19:20 -05:00
|
|
|
|
2009-03-15 20:08:31 -04:00
|
|
|
EXTRA_DIST = \
|
|
|
|
autogen.sh \
|
2016-04-22 09:56:30 -04:00
|
|
|
m4/attribute.m4 m4/ccflags.m4 m4/libshout.m4 m4/libxml2.m4 \
|
|
|
|
m4/progname.m4 m4/taglib.m4 m4/tree.m4 m4/vacopy.m4 m4/vars.m4
|
2004-01-30 12:19:45 -05:00
|
|
|
|
2009-03-15 20:08:31 -04:00
|
|
|
CLEANFILES = core *.core *~ .*~
|
|
|
|
|
2015-04-15 17:16:12 -04:00
|
|
|
.PHONY: snapshot
|
2007-03-08 20:52:03 -05:00
|
|
|
|
Various cleanups and auto-fu tweaks.
* Make Makefile.am files look alike as much as possible.
* Remove debug: target and don't mess with the users DEBUG environment
variable: Autoconf checks for -g and automatically adds it to CFLAGS, which
is overridden by the user's $DEBUG. If the user didn't specify one, "make
install" will strip the resulting binaries and leave the debugging symbols
intact otherwise.
* Remove profile: target, as it is quite pointless in Ezstream. Also, the user
can add profiling flags via the $DEBUG variable as well.
* Remove -ffast-math and -fsigned-char from gcc, and enable two additional
warnings instead.
* Unconfuse Solaris compiler flags (unfortunately, the configure script still
fails in the libshout check with some obscure linker error): Do not force
-x04 and -fast optimizations, let the user decide (it doesn't matter for
Ezstream anyways.) Remove -xgc92, which is deprecated and actually makes
the resulting binary run slower on SPARC. Also remove -fsimple, which does
not help and has the potential of causing trouble, and don't enable verbose
warnings just to disable them afterwards with -w. Leave only -v for verbose
warnings.
* Const'ify getFormat*() functions and blankString, and squelch a few const-
related warnings.
* Squelch a signedness warning and fix two ;; syntax errors.
* Add a snapshot target to Makefile.am that creates a tarball of the form
ezstream-snapshot-YYYYMMDD.tar.gz.
git-svn-id: https://svn.xiph.org/trunk/ezstream@12562 0101bb08-14d6-0310-b084-bc0e0c8e3800
2007-02-25 09:00:15 -05:00
|
|
|
snapshot:
|
2007-02-26 10:28:50 -05:00
|
|
|
${MAKE} distcheck distdir=${PACKAGE}-snapshot-`date +'%Y%m%d'`
|