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 /mp3lib | |
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 'mp3lib')
-rw-r--r-- | mp3lib/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/mp3lib/Makefile b/mp3lib/Makefile index 64be72ec23..6f7cc478c5 100644 --- a/mp3lib/Makefile +++ b/mp3lib/Makefile @@ -42,10 +42,10 @@ ifeq ($(TARGET_OS),OpenBSD) ./mp3lib_objfix.sh endif test1: libMP3.a test.c - $(CC) $(CFLAGS) test.c ../libvo/aclib.c -o test1 -I.. -L. -lMP3 -lm + $(CC) $(CFLAGS) test.c ../libvo/aclib.c -o test1 -I.. ./libMP3.a -lm test2: libMP3.a test2.c - $(CC) $(CFLAGS) test2.c ../libvo/aclib.c -o test2 -I.. -L. -lMP3 -lm + $(CC) $(CFLAGS) test2.c ../libvo/aclib.c -o test2 -I.. ./libMP3.a -lm all: libMP3.a |