mirror of
https://gitlab.xiph.org/xiph/icecast-common.git
synced 2024-11-03 04:17:20 -05:00
19 lines
304 B
Makefile
19 lines
304 B
Makefile
|
## Process this with automake to create Makefile.in
|
||
|
|
||
|
AUTOMAKE_OPTIONS = foreign
|
||
|
|
||
|
noinst_LTLIBRARIES = libicelog.la
|
||
|
noinst_HEADERS = log.h
|
||
|
|
||
|
libicelog_la_SOURCES = log.c
|
||
|
|
||
|
# SCCS stuff (for BitKeeper)
|
||
|
GET = true
|
||
|
|
||
|
debug:
|
||
|
$(MAKE) all CFLAGS="@DEBUG@"
|
||
|
|
||
|
profile:
|
||
|
$(MAKE) all CFLAGS="@PROFILE@"
|
||
|
|