diff options
author | diego <diego@b3059339-0415-0410-9bf9-f77b7e298cf2> | 2006-11-25 09:52:45 +0000 |
---|---|---|
committer | diego <diego@b3059339-0415-0410-9bf9-f77b7e298cf2> | 2006-11-25 09:52:45 +0000 |
commit | 0bfd8daa1994f00b8d1e6ba0963108fc357bb96d (patch) | |
tree | 7c46e20175476e34c467ee069a838eb05781f190 | |
parent | d2b6dd129e04dc457cef6907c625b6797e1158aa (diff) |
Simplify LIBNAME target with $@ and $^.
git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@21207 b3059339-0415-0410-9bf9-f77b7e298cf2
-rw-r--r-- | osdep/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/osdep/Makefile b/osdep/Makefile index 87ccb50533..21a2211ca3 100644 --- a/osdep/Makefile +++ b/osdep/Makefile @@ -49,8 +49,8 @@ mplayer-rc.o: mplayer.rc windres -o $@ $< $(LIBNAME): $(OBJS) - $(AR) r $(LIBNAME) $(OBJS) - $(RANLIB) $(LIBNAME) + $(AR) r $@ $^ + $(RANLIB) $@ all: $(LIBNAME) |