1## Process this file with automake to produce Makefile.in
2
3AUTOMAKE_OPTIONS = foreign
4
5INCLUDES = -I$(top_srcdir)/include @OGG_CFLAGS@
6
7noinst_PROGRAMS = test
8
9check: $(noinst_PROGRAMS)
10	./test$(EXEEXT)
11
12test_SOURCES = util.c util.h write_read.c write_read.h test.c
13test_LDADD = ../lib/libvorbisenc.la ../lib/libvorbis.la @OGG_LIBS@
14
15debug:
16	$(MAKE) all CFLAGS="@DEBUG@"
17
18profile:
19	$(MAKE) all CFLAGS="@PROFILE@"
20