mirror of
https://gitlab.xiph.org/xiph/icecast-common.git
synced 2024-11-03 04:17:20 -05:00
11fbb2eb0c
svn path=/trunk/avl/; revision=5050
19 lines
343 B
Makefile
19 lines
343 B
Makefile
## Process this with automake to create Makefile.in
|
|
|
|
AUTOMAKE_OPTIONS = foreign
|
|
|
|
EXTRA_DIST = BUILDING COPYING README TODO
|
|
|
|
noinst_LTLIBRARIES = libicetiming.la
|
|
noinst_HEADERS = timing.h
|
|
|
|
libicetiming_la_SOURCES = timing.c
|
|
libicetiming_la_CFLAGS = @XIPH_CFLAGS@
|
|
|
|
debug:
|
|
$(MAKE) all CFLAGS="@DEBUG@"
|
|
|
|
profile:
|
|
$(MAKE) all CFLAGS="@PROFILE@"
|
|
|