mirror of
https://github.com/mpv-player/mpv
synced 2024-11-03 03:19:24 +01:00
b02e7924b9
header files that happen to have the same name as internal ones. based on a patch by Vladislav Naumov, vladislav.naumov **at** gmail **dot** com git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@19426 b3059339-0415-0410-9bf9-f77b7e298cf2
48 lines
642 B
Makefile
48 lines
642 B
Makefile
|
|
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
|
|
|
|
OBJS=$(SRCS:.c=.o)
|
|
|
|
CFLAGS = -I. -I.. \
|
|
-I../libmpcodecs \
|
|
$(OPTFLAGS) \
|
|
-D_GNU_SOURCE \
|
|
|
|
.SUFFIXES: .c .o
|
|
|
|
# .PHONY: all clean
|
|
|
|
.c.o:
|
|
$(CC) -c $(CFLAGS) -o $@ $<
|
|
|
|
all: $(LIBS)
|
|
|
|
$(LIBNAME): $(OBJS)
|
|
$(AR) r $(LIBNAME) $(OBJS)
|
|
$(RANLIB) $(LIBNAME)
|
|
|
|
clean:
|
|
rm -f *.o *.a *~
|
|
|
|
distclean: clean
|
|
rm -f .depend
|
|
|
|
dep: depend
|
|
|
|
depend:
|
|
$(CC) -MM $(CFLAGS) $(SRCS) 1>.depend
|
|
|
|
#
|
|
# include dependency files if they exist
|
|
#
|
|
ifneq ($(wildcard .depend),)
|
|
include .depend
|
|
endif
|
|
|