diff options
author | diego <diego@b3059339-0415-0410-9bf9-f77b7e298cf2> | 2007-02-03 14:02:09 +0000 |
---|---|---|
committer | diego <diego@b3059339-0415-0410-9bf9-f77b7e298cf2> | 2007-02-03 14:02:09 +0000 |
commit | 82669556131fe7164fd6e72b5e6c6999dd02d280 (patch) | |
tree | 3b9e61b2afeac50b56158b859f5cdf061acbf5bb /mpcommon.mak | |
parent | d157c5e4d2a96fc41c3a3a94d64ccf3e00c4fc2d (diff) | |
download | mpv-82669556131fe7164fd6e72b5e6c6999dd02d280.tar.bz2 mpv-82669556131fe7164fd6e72b5e6c6999dd02d280.tar.xz |
Merge both library rules by separating the rule from the dependencies.
git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@22111 b3059339-0415-0410-9bf9-f77b7e298cf2
Diffstat (limited to 'mpcommon.mak')
-rw-r--r-- | mpcommon.mak | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/mpcommon.mak b/mpcommon.mak index 1431a9636a..1308037f90 100644 --- a/mpcommon.mak +++ b/mpcommon.mak @@ -12,10 +12,8 @@ LIBS = $(LIBNAME) $(LIBNAME2) all: $(LIBS) $(LIBNAME): $(OBJS) - $(AR) r $@ $^ - $(RANLIB) $@ - $(LIBNAME2): $(OBJS2) +$(LIBNAME) $(LIBNAME2): $(OBJS2) $(AR) r $@ $^ $(RANLIB) $@ |