diff options
author | arpi <arpi@b3059339-0415-0410-9bf9-f77b7e298cf2> | 2002-08-29 21:30:57 +0000 |
---|---|---|
committer | arpi <arpi@b3059339-0415-0410-9bf9-f77b7e298cf2> | 2002-08-29 21:30:57 +0000 |
commit | ae8ff3e44505c4ac2f075cd5c70eb900b7f71bbf (patch) | |
tree | 19c788ff49c12c17e8aa29ab738356e0ab0ff515 /loader | |
parent | bb2db9719399957adeaa5c6db82316279828c73c (diff) |
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 'loader')
-rw-r--r-- | loader/dshow/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/loader/dshow/Makefile b/loader/dshow/Makefile index 1d4fbc31a0..e4973fd35d 100644 --- a/loader/dshow/Makefile +++ b/loader/dshow/Makefile @@ -23,7 +23,7 @@ $(LIBNAME): $(OBJS) $(AR) r $(LIBNAME) $(OBJS) test: test.c $(LIBNAME) - $(CC) test.c $(CFLAGS) -o test -L. -lDS_Filter -L.. -lloader $(ARCH_LIBS) -lstdc++ + $(CC) test.c $(CFLAGS) -o test ./libDS_Filter.a ../libloader.a $(ARCH_LIBS) -lstdc++ all: $(LIBNAME) |