mirror of
https://gitlab.xiph.org/xiph/icecast-common.git
synced 2024-11-03 04:17:20 -05:00
f5c688d43b
passed flags into the compiling rules. Also configure in libshout now sets up the XIPH_CFLAGS svn path=/trunk/avl/; revision=4439
22 lines
391 B
Makefile
22 lines
391 B
Makefile
## Process this with automake to create Makefile.in
|
|
|
|
AUTOMAKE_OPTIONS = foreign
|
|
|
|
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
|
|
|
|
# SCCS stuff (for BitKeeper)
|
|
GET = true
|
|
|
|
debug:
|
|
$(MAKE) all CFLAGS="@DEBUG@"
|
|
|
|
profile:
|
|
$(MAKE) all CFLAGS="@PROFILE@"
|
|
|