# vorbis makefile configured for use with gcc on any platform # $Id: Makefile.in,v 1.11 2000/08/24 01:10:02 kcarnold Exp $ ############################################################################### # # # To build a production vorbis (preferrably using gmake), just type 'make'. # # To build with debugging or profiling information, use 'make debug' or # # 'make profile' respectively. 'make clean' is a good idea between builds # # with different target names, or before a final build. # # # ############################################################################### # DO NOT EDIT BELOW! ########################################################## # (unless, of course, you know what you are doing :) ########################## @SET_MAKE@ SUBDIRS = lib examples # vorbis-tools cmdline xmms vq huff kmpg # configure changes items in these, so get distclean to remove them. DCLEAN_DIRS = vorbis-tools cmdline xmms vq huff kmpg all debug profile selftest target clean: echo $(MAKECMDGOALS) @for dir in $(SUBDIRS); do (cd $$dir && $(MAKE) $(MFLAGS) $(MAKECMDGOALS)) || exit 1; done -rm -f *~ distclean: @for dir in $(SUBDIRS) $(DCLEAN_DIRS); do (cd $$dir && $(MAKE) $(MFLAGS) $(MAKECMDGOALS)) || exit 1; done -rm -f Makefile config.*