mirror of https://github.com/mpv-player/mpv
Remove pointless indirection.
git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@21227 b3059339-0415-0410-9bf9-f77b7e298cf2
This commit is contained in:
parent
d55ba3f046
commit
b0e412cc9c
|
@ -3,8 +3,6 @@ include ../config.mak
|
|||
|
||||
LIBNAME=libass.a
|
||||
|
||||
LIBS=$(LIBNAME)
|
||||
|
||||
SRCS=ass.c ass_cache.c ass_fontconfig.c ass_render.c ass_utils.c ass_mp.c ass_bitmap.c ass_library.c
|
||||
|
||||
OBJS=$(SRCS:.c=.o)
|
||||
|
@ -21,7 +19,7 @@ CFLAGS = -I. -I.. \
|
|||
.c.o:
|
||||
$(CC) -c $(CFLAGS) -o $@ $<
|
||||
|
||||
all: $(LIBS)
|
||||
all: $(LIBNAME)
|
||||
|
||||
$(LIBNAME): $(OBJS)
|
||||
$(AR) r $(LIBNAME) $(OBJS)
|
||||
|
|
Loading…
Reference in New Issue