mirror of
https://gitlab.xiph.org/xiph/icecast-common.git
synced 2024-11-03 04:17:20 -05:00
20 lines
341 B
Makefile
20 lines
341 B
Makefile
## Process this with automake to create Makefile.in
|
|
|
|
AUTOMAKE_OPTIONS = foreign
|
|
|
|
EXTRA_DIST = BUILDING COPYING README TODO avl.dsp test.c
|
|
|
|
noinst_LTLIBRARIES = libiceavl.la
|
|
pkginclude_HEADERS = avl.h
|
|
|
|
libiceavl_la_SOURCES = avl.c
|
|
|
|
AM_CPPFLAGS = -I$(srcdir)/..
|
|
|
|
debug:
|
|
$(MAKE) all CFLAGS="@DEBUG@"
|
|
|
|
profile:
|
|
$(MAKE) all CFLAGS="@PROFILE@"
|
|
|