mirror of
https://gitlab.xiph.org/xiph/icecast-common.git
synced 2024-10-27 05:10:16 -04:00
a420bd0b4f
smaller libs. svn path=/trunk/avl/; revision=4456
22 lines
363 B
Makefile
22 lines
363 B
Makefile
## Process this with automake to create Makefile.in
|
|
|
|
AUTOMAKE_OPTIONS = foreign
|
|
|
|
noinst_LTLIBRARIES = libicehttpp.la
|
|
noinst_HEADERS = httpp.h
|
|
|
|
libicehttpp_la_SOURCES = httpp.c
|
|
libicehttpp_la_CFLAGS = @XIPH_CFLAGS@
|
|
|
|
INCLUDES = -I$(srcdir)/..
|
|
|
|
# SCCS stuff (for BitKeeper)
|
|
GET = true
|
|
|
|
debug:
|
|
$(MAKE) all CFLAGS="@DEBUG@"
|
|
|
|
profile:
|
|
$(MAKE) all CFLAGS="@PROFILE@"
|
|
|