"Oops." Fixed.
[platform/upstream/libvorbis.git] / Makefile.in
1 # vorbis makefile configured for use with gcc on any platform
2
3 # $Id: Makefile.in,v 1.11 2000/08/24 01:10:02 kcarnold 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
20 SUBDIRS =       lib examples # vorbis-tools cmdline xmms vq huff kmpg
21
22 # configure changes items in these, so get distclean to remove them.
23 DCLEAN_DIRS =   vorbis-tools cmdline xmms vq huff kmpg
24
25 all debug profile selftest target clean:
26         echo $(MAKECMDGOALS)
27         @for dir in $(SUBDIRS); do (cd $$dir && $(MAKE) $(MFLAGS) $(MAKECMDGOALS)) || exit 1; done
28         -rm -f *~
29
30 distclean:
31         @for dir in $(SUBDIRS) $(DCLEAN_DIRS); do (cd $$dir && $(MAKE) $(MFLAGS) $(MAKECMDGOALS)) || exit 1; done
32         -rm -f Makefile config.* 
33