mirror of
https://gitlab.xiph.org/xiph/icecast-common.git
synced 2024-12-04 14:46:31 -05:00
21 lines
365 B
Makefile
21 lines
365 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
|
||
|
|
||
|
INCLUDES = -I$(srcdir)/../avl -I$(srcdir)/../thread
|
||
|
|
||
|
# SCCS stuff (for BitKeeper)
|
||
|
GET = true
|
||
|
|
||
|
debug:
|
||
|
$(MAKE) all CFLAGS="@DEBUG@"
|
||
|
|
||
|
profile:
|
||
|
$(MAKE) all CFLAGS="@PROFILE@"
|
||
|
|