summaryrefslogtreecommitdiffstats
path: root/osdep
diff options
context:
space:
mode:
authordiego <diego@b3059339-0415-0410-9bf9-f77b7e298cf2>2006-11-25 09:52:45 +0000
committerdiego <diego@b3059339-0415-0410-9bf9-f77b7e298cf2>2006-11-25 09:52:45 +0000
commit0bfd8daa1994f00b8d1e6ba0963108fc357bb96d (patch)
tree7c46e20175476e34c467ee069a838eb05781f190 /osdep
parentd2b6dd129e04dc457cef6907c625b6797e1158aa (diff)
downloadmpv-0bfd8daa1994f00b8d1e6ba0963108fc357bb96d.tar.bz2
mpv-0bfd8daa1994f00b8d1e6ba0963108fc357bb96d.tar.xz
Simplify LIBNAME target with $@ and $^.
git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@21207 b3059339-0415-0410-9bf9-f77b7e298cf2
Diffstat (limited to 'osdep')
-rw-r--r--osdep/Makefile4
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)