1
0
mirror of https://github.com/mpv-player/mpv synced 2025-01-01 04:12:25 +00:00
mpv/libmpcodecs/Makefile
arpi 0fdb53c942 Qt RPZA decoder interface by Roberto Togni <rtogni@bresciaonline.it>
git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@4916 b3059339-0415-0410-9bf9-f77b7e298cf2
2002-03-02 22:08:19 +00:00

42 lines
592 B
Makefile

include ../config.mak
LIBNAME = libmpcodecs.a
SRCS=dec_video.c vd.c vd_null.c vd_cinepak.c vd_qtrpza.c
OBJS=$(SRCS:.c=.o)
CFLAGS = -Wall $(OPTFLAGS) -I. -I.. -I../libmpdemux -I../loader $(EXTRA_INC)
.SUFFIXES: .c .o
# .PHONY: all clean
.c.o:
$(CC) -c $(CFLAGS) -o $@ $<
$(LIBNAME): $(OBJS)
$(AR) r $(LIBNAME) $(OBJS)
all: $(LIBNAME)
clean:
rm -f *.o *.a *~
distclean:
rm -f Makefile.bak *.o *.a *~ .depend
dep: depend
depend:
$(CC) -MM $(CFLAGS) $(SRCS) 1>.depend
#
# include dependency files if they exist
#
ifneq ($(wildcard .depend),)
include .depend
endif