1
0
mirror of https://gitlab.xiph.org/xiph/icecast-common.git synced 2024-09-22 04:15:55 -04:00

more on the XIPH_CFLAGS. For the smaller libs like thread etc put any

passed flags into the compiling rules.  Also configure in libshout now
sets up the XIPH_CFLAGS

svn path=/trunk/avl/; revision=4439
This commit is contained in:
Karl Heyes 2003-03-08 00:46:59 +00:00
parent c54d71e63b
commit f5c688d43b
5 changed files with 15 additions and 10 deletions

View File

@ -6,6 +6,7 @@ noinst_LTLIBRARIES = libiceavl.la
noinst_HEADERS = avl.h
libiceavl_la_SOURCES = avl.c
libiceavl_la_CFLAGS = @XIPH_CFLAGS@
INCLUDES = -I$(srcdir)/../thread
@ -13,8 +14,8 @@ INCLUDES = -I$(srcdir)/../thread
GET = true
debug:
$(MAKE) all CFLAGS="@DEBUG@"
$(MAKE) all CFLAGS="@DEBUG@"
profile:
$(MAKE) all CFLAGS="@PROFILE@"
$(MAKE) all CFLAGS="@PROFILE@"

View File

@ -6,6 +6,7 @@ noinst_LTLIBRARIES = libicehttpp.la
noinst_HEADERS = httpp.h
libicehttpp_la_SOURCES = httpp.c
libicehttpp_la_CFLAGS = @XIPH_CFLAGS@
INCLUDES = -I$(srcdir)/../avl -I$(srcdir)/../thread
@ -13,8 +14,8 @@ INCLUDES = -I$(srcdir)/../avl -I$(srcdir)/../thread
GET = true
debug:
$(MAKE) all CFLAGS="@DEBUG@"
$(MAKE) all CFLAGS="@DEBUG@"
profile:
$(MAKE) all CFLAGS="@PROFILE@"
$(MAKE) all CFLAGS="@PROFILE@"

View File

@ -6,12 +6,13 @@ noinst_LTLIBRARIES = libicenet.la
noinst_HEADERS = resolver.h sock.h
libicenet_la_SOURCES = sock.c resolver.c
libicenet_la_CFLAGS = @XIPH_CFLAGS@
INCLUDES = -I$(srcdir)/../thread
debug:
$(MAKE) all CFLAGS="@DEBUG@"
$(MAKE) all CFLAGS="@DEBUG@"
profile:
$(MAKE) all CFLAGS="@PROFILE@"
$(MAKE) all CFLAGS="@PROFILE@

View File

@ -6,6 +6,7 @@ noinst_LTLIBRARIES = libicethread.la
noinst_HEADERS = thread.h
libicethread_la_SOURCES = thread.c
libicethread_la_CFLAGS = @XIPH_CFLAGS@
INCLUDES = -I$(srcdir)/../avl -I$(srcdir)/../log
@ -13,8 +14,8 @@ INCLUDES = -I$(srcdir)/../avl -I$(srcdir)/../log
GET = true
debug:
$(MAKE) all CFLAGS="@DEBUG@"
$(MAKE) all CFLAGS="@DEBUG@"
profile:
$(MAKE) all CFLAGS="@PROFILE@"
$(MAKE) all CFLAGS="@PROFILE@"

View File

@ -6,13 +6,14 @@ noinst_LTLIBRARIES = libicetiming.la
noinst_HEADERS = timing.h
libicetiming_la_SOURCES = timing.c
libicetiming_la_CFLAGS = @XIPH_CFLAGS@
# SCCS stuff (for BitKeeper)
GET = true
debug:
$(MAKE) all CFLAGS="@DEBUG@"
$(MAKE) all CFLAGS="@DEBUG@"
profile:
$(MAKE) all CFLAGS="@PROFILE@"
$(MAKE) all CFLAGS="@PROFILE@"