summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authordbt <dbt@xiph.org>2000-05-26 23:08:36 +0000
committerdbt <dbt@xiph.org>2000-05-26 23:08:36 +0000
commit36f8479597fa1f3fe4bd3d845dd2dd8efecd6c35 (patch)
tree61c90af25a43e31a858b72866f5c221024f61bf2
parentc1435c9f1b9bfeb069a20a5728aeb72cd8fc9d2e (diff)
downloadlibvorbis-git-36f8479597fa1f3fe4bd3d845dd2dd8efecd6c35.tar.gz
whee, first commit.
Fix gmake-isms ($^ isn't crossplatform) svn path=/trunk/vorbis/; revision=412
-rw-r--r--lib/Makefile.in14
1 files changed, 8 insertions, 6 deletions
diff --git a/lib/Makefile.in b/lib/Makefile.in
index 94b2086e..4b1b8e6c 100644
--- a/lib/Makefile.in
+++ b/lib/Makefile.in
@@ -1,6 +1,6 @@
# vorbis makefile configured for use with gcc on any platform
-# $Id: Makefile.in,v 1.27 2000/05/17 22:34:22 xiphmont Exp $
+# $Id: Makefile.in,v 1.28 2000/05/26 23:08:36 dbt Exp $
###############################################################################
# #
@@ -42,6 +42,9 @@ VF_HFILES = ../include/vorbis/vorbisfile.h ../include/vorbis/codec.h \
os.h misc.h
VF_LFILES = vorbisfile.o
+PSY_FILES = mdct.o psy.o lpc.o smallft.o window.o psytune.o floor0.o \
+ bitwise.o lsp.o codebook.o sharedbook.o
+
all:
$(MAKE) target CFLAGS="$(OPT)"
@@ -74,16 +77,15 @@ selftest:
@./test_codebook
libvorbis.a: $(LFILES)
- $(AR) -r libvorbis.a $^
+ $(AR) -r libvorbis.a $(LFILES)
$(RANLIB) libvorbis.a
vorbisfile.a: $(VF_LFILES)
- $(AR) -r vorbisfile.a $^
+ $(AR) -r vorbisfile.a $(VF_LFILES)
$(RANLIB) vorbisfile.a
-psytune: mdct.o psy.o lpc.o smallft.o window.o psytune.o floor0.o \
- bitwise.o lsp.o codebook.o sharedbook.o
- $(CC) $(CFLAGS) $(LDFLAGS) $^ -o $@ $(LIBS)
+psytune: $(PSY_FILES)
+ $(CC) $(CFLAGS) $(LDFLAGS) $(PSY_FILES) -o $@ $(LIBS)
$(LFILES): $(HFILES)