summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJack Moffitt <jack@xiph.org>2000-09-07 01:05:44 +0000
committerJack Moffitt <jack@xiph.org>2000-09-07 01:05:44 +0000
commit29532e3c89b0d25a62ec9de613e647ccab2eaaa4 (patch)
tree8db757dc71868dddd2f78bc516166db8753b8911
parentcd960adc8ca4117d76b348b5f290d7e228d0bf6a (diff)
downloadlibvorbis-git-29532e3c89b0d25a62ec9de613e647ccab2eaaa4.tar.gz
more cleaning
svn path=/branches/branch_jackoggsvorbis/vorbis/; revision=654
-rw-r--r--Makefile.in33
1 files changed, 0 insertions, 33 deletions
diff --git a/Makefile.in b/Makefile.in
deleted file mode 100644
index 5db761bc..00000000
--- a/Makefile.in
+++ /dev/null
@@ -1,33 +0,0 @@
-# vorbis makefile configured for use with gcc on any platform
-
-# $Id: Makefile.in,v 1.11.2.1 2000/08/31 08:59:58 xiphmont 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 xmms vq huff kmpg
-
-# configure changes items in these, so get distclean to remove them.
-DCLEAN_DIRS = vorbis-tools 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.*
-