1## Process this with automake to create Makefile.in
2
3AUTOMAKE_OPTIONS = foreign
4
5EXTRA_DIST = BUILDING COPYING README TODO
6
7noinst_LTLIBRARIES = libicethread.la
8noinst_HEADERS = thread.h
9
10libicethread_la_SOURCES = thread.c
11libicethread_la_CFLAGS = @XIPH_CFLAGS@
12
13AM_CPPFLAGS = -I$(srcdir)/..
14
15debug:
16	$(MAKE) all CFLAGS="@DEBUG@"
17
18profile:
19	$(MAKE) all CFLAGS="@PROFILE@"
20
21