12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485 |
- # $Id: Makefile.in,v 1.10.4.4 2000/05/04 23:08:10 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@
- FLAGS=-I. -I../include @TYPESIZES@ @CFLAGS@
- OPT=@OPT@ $(FLAGS)
- DEBUG=@DEBUG@ $(FLAGS)
- PROFILE=@PROFILE@ $(FLAGS)
- CC=@CC@
- LD=@CC@
- LDFLAGS=@LDFLAGS@ $(FLAGS)
- AR=@AR@
- RANLIB=@RANLIB@
- LIBS=@LIBS@ -lm
- HFILES = ../include/vorbis/codebook.h vqgen.h vqext.h bookutil.h
- OFILES = vqgen.o vqsplit.o bookutil.o ../lib/sharedbook.o
- ALLOFILES = $(OFILES) lspdata.o genericdata.o train.o build.o run.o\
- cascade.o partition.o metrics.o residuedata.o latticebuild.o\
- latticepare.o
- all:
- $(MAKE) target CFLAGS="$(OPT)"
- debug:
- $(MAKE) target CFLAGS="$(DEBUG)"
- profile:
- $(MAKE) target CFLAGS="$(PROFILE)"
- target: lspvqtrain genericvqtrain residuevqtrain vqbuild vqcascade vqmetrics latticebuild latticepare
- lspvqtrain: $(OFILES) lspdata.o train.o
- $(CC) $(CFLAGS) $(LDFLAGS) $^ -o $@ $(LIBS)
- residuevqtrain: $(OFILES) residuedata.o train.o
- $(CC) $(CFLAGS) $(LDFLAGS) $^ -o $@ $(LIBS)
- genericvqtrain: $(OFILES) genericdata.o train.o
- $(CC) $(CFLAGS) $(LDFLAGS) $^ -o $@ $(LIBS)
- vqbuild: $(OFILES) build.o
- $(CC) $(CFLAGS) $(LDFLAGS) $^ -o $@ $(LIBS)
- vqcascade: $(OFILES) run.o cascade.o
- $(CC) $(CFLAGS) $(LDFLAGS) $^ -o $@ $(LIBS)
- vqmetrics: $(OFILES) run.o metrics.o
- $(CC) $(CFLAGS) $(LDFLAGS) $^ -o $@ $(LIBS)
- latticebuild: $(OFILES) latticebuild.o
- $(CC) $(CFLAGS) $(LDFLAGS) $^ -o $@ $(LIBS)
- latticepare: $(OFILES) latticepare.o
- $(CC) $(CFLAGS) $(LDFLAGS) $^ -o $@ $(LIBS)
- $(ALLOFILES): $(HFILES)
- .c.o:
- $(CC) $(CFLAGS) -c $<
- $(OFILES): $(HFILES)
- clean:
- -rm -f *.o *.a test* *~ *.out *.m config.* \
- lspvqtrain genericvqtrain residuevqtrain\
- vqbuild vqmetrics latticebuild vqcascade latticepare
- distclean: clean
- -rm -f Makefile
|