Allow cascade and metric utilities to take more than one codebook
[platform/upstream/libvorbis.git] / examples / Makefile.in
1 # vorbis makefile configured for use with gcc on any platform
2
3 # $Id: Makefile.in,v 1.2 2000/01/05 03:10:23 xiphmont Exp $
4
5 ###############################################################################
6 #                                                                             #
7 # To build a production vorbis (preferrably using gmake), just type 'make'.   #
8 # To build with debugging or profiling information, use 'make debug' or       #
9 # 'make profile' respectively.  'make clean' is a good idea between builds    #
10 # with different target names, or before a final build.                       #
11 #                                                                             #
12 ###############################################################################
13
14
15 # DO NOT EDIT BELOW! ##########################################################
16 # (unless, of course, you know what you are doing :) ##########################
17
18 @SET_MAKE@
19 FLAGS=-I. -I../include @TYPESIZES@ @CFLAGS@ 
20 OPT=@OPT@ $(FLAGS)
21 DEBUG=@DEBUG@ $(FLAGS)
22 PROFILE=@PROFILE@ $(FLAGS)
23 CC=@CC@
24 LD=@CC@
25 LDFLAGS=@LDFLAGS@ $(FLAGS)
26 AR=@AR@
27 RANLIB=@RANLIB@
28 LIBS=@LIBS@ -lm
29
30 HFILES =        ../include/vorbis/codec.h ../include/vorbis/vorbisfile.h
31 OFILES =        encoder_example.o decoder_example.o chaining_example.o
32 BINFILES =      encoder_example decoder_example chaining_example
33
34 all:
35         $(MAKE) target CFLAGS="$(OPT)"
36
37 debug:  
38         $(MAKE) target CFLAGS="$(DEBUG)"
39
40 profile: 
41         $(MAKE) target CFLAGS="$(PROFILE)"
42
43 target: $(BINFILES)
44
45 encoder_example:        $(OFILES) ../lib/libvorbis.a
46         $(CC) $(CFLAGS) $(LDFLAGS) encoder_example.o ../lib/libvorbis.a -o \
47                         encoder_example -lm
48
49 decoder_example:        $(OFILES) ../lib/libvorbis.a
50         $(CC) $(CFLAGS) $(LDFLAGS) decoder_example.o ../lib/libvorbis.a -o \
51                         decoder_example -lm
52
53 chaining_example:       $(OFILES) ../lib/libvorbis.a ../lib/vorbisfile.a
54         $(CC) $(CFLAGS) $(LDFLAGS) chaining_example.o \
55                         ../lib/vorbisfile.a ../lib/libvorbis.a \
56                         -o chaining_example -lm
57
58 $(OFILES):      $(HFILES)
59
60 .c.o:
61         $(CC) $(CFLAGS) -c $<
62
63 clean:
64         -rm -f *.o *.a test* *~ *.out ogg config.* \
65                 encoder_example decoder_example chaining_example
66
67 distclean:      clean
68         -rm -f Makefile
69