0
0
mirror of https://github.com/mpv-player/mpv.git synced 2024-09-20 20:03:10 +02:00

Use $@ and $^ to designate target and prerequisites.

git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@21200 b3059339-0415-0410-9bf9-f77b7e298cf2
This commit is contained in:
diego 2006-11-25 00:12:08 +00:00
parent 4f36a70cd2
commit cd18aec18a

View File

@ -16,8 +16,8 @@ OBJS := $(OBJS:.s=.o)
all: libloader.a
libloader.a: $(OBJS)
$(AR) -r libloader.a $(OBJS)
$(RANLIB) libloader.a
$(AR) -r $@ $^
$(RANLIB) $@
clean:
rm -f *.o *.a *~