2001-09-09 22:24:39 -04:00
|
|
|
## Process this with automake to create Makefile.in
|
|
|
|
|
|
|
|
AUTOMAKE_OPTIONS = foreign
|
|
|
|
|
|
|
|
noinst_LTLIBRARIES = libicehttpp.la
|
2015-02-10 13:47:40 -05:00
|
|
|
noinst_HEADERS = httpp.h encoding.h
|
2001-09-09 22:24:39 -04:00
|
|
|
|
2015-02-10 13:47:40 -05:00
|
|
|
libicehttpp_la_SOURCES = httpp.c encoding.c
|
2003-03-07 19:46:59 -05:00
|
|
|
libicehttpp_la_CFLAGS = @XIPH_CFLAGS@
|
2015-11-28 07:21:03 -05:00
|
|
|
AM_CPPFLAGS = -I$(srcdir)/.. @XIPH_CPPFLAGS@
|
2001-09-09 22:24:39 -04:00
|
|
|
|
|
|
|
# SCCS stuff (for BitKeeper)
|
|
|
|
GET = true
|
|
|
|
|
|
|
|
debug:
|
2003-03-07 19:46:59 -05:00
|
|
|
$(MAKE) all CFLAGS="@DEBUG@"
|
2001-09-09 22:24:39 -04:00
|
|
|
|
|
|
|
profile:
|
2003-03-07 19:46:59 -05:00
|
|
|
$(MAKE) all CFLAGS="@PROFILE@"
|
2001-09-09 22:24:39 -04:00
|
|
|
|