summaryrefslogtreecommitdiffstats
path: root/liba52
diff options
context:
space:
mode:
authorarpi <arpi@b3059339-0415-0410-9bf9-f77b7e298cf2>2002-08-29 21:30:57 +0000
committerarpi <arpi@b3059339-0415-0410-9bf9-f77b7e298cf2>2002-08-29 21:30:57 +0000
commitae8ff3e44505c4ac2f075cd5c70eb900b7f71bbf (patch)
tree19c788ff49c12c17e8aa29ab738356e0ab0ff515 /liba52
parentbb2db9719399957adeaa5c6db82316279828c73c (diff)
downloadmpv-ae8ff3e44505c4ac2f075cd5c70eb900b7f71bbf.tar.bz2
mpv-ae8ff3e44505c4ac2f075cd5c70eb900b7f71bbf.tar.xz
use dir/libname.a instead of -Ldir -lname
partially done by "Steven M. Schultz" <sms@2BSD.COM> Note: some entries (libmpdvdkit, libdha) left unchanged as they may be dynamic and not shipped with mplayer. git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@7149 b3059339-0415-0410-9bf9-f77b7e298cf2
Diffstat (limited to 'liba52')
-rw-r--r--liba52/Makefile4
1 files changed, 2 insertions, 2 deletions
diff --git a/liba52/Makefile b/liba52/Makefile
index 0456440725..63cb29d3ef 100644
--- a/liba52/Makefile
+++ b/liba52/Makefile
@@ -19,10 +19,10 @@ $(LIBNAME): $(OBJS)
$(AR) r $(LIBNAME) $(OBJS)
test: $(LIBNAME) test.c
- $(CC) $(CFLAGS) test.c ../cpudetect.c -o test -L. -la52 -lm
+ $(CC) $(CFLAGS) test.c ../cpudetect.c -o test ./liba52.a -lm
test2: $(LIBNAME) test.c
- $(CC) $(CFLAGS) test.c -o test2 -L../libac3 -lac3 -L. -la52
+ $(CC) $(CFLAGS) test.c -o test2 ../libac3/libac3.a ./liba52.a -lm
all: $(LIBNAME)