summaryrefslogtreecommitdiffstats
path: root/libmpdemux
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 /libmpdemux
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 'libmpdemux')
-rw-r--r--libmpdemux/Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/libmpdemux/Makefile b/libmpdemux/Makefile
index 67e1c979f4..248c36b861 100644
--- a/libmpdemux/Makefile
+++ b/libmpdemux/Makefile
@@ -39,7 +39,7 @@ $(LIBNAME): $(OBJS)
$(AR) r $(LIBNAME) $(OBJS)
test: $(LIBNAME) test.c
- $(CC) $(CFLAGS) test.c ../mp_msg.c ../linux/shmem.c -o test -L. -lmpdemux -ldvdread -lz -lpthread
+ $(CC) $(CFLAGS) test.c ../mp_msg.c ../linux/shmem.c -o test ./libmpdemux.a -ldvdread -lz -lpthread
clean:
rm -f *.o *.a *~