view libmpcodecs/Makefile @ 4917:6002d8a3b080

reinstated YUY2, BGR32 and BGR24 decoders, all reworked to operate with the mp_image structure; PPC decoding works with YV12 output!
author melanson
date Sun, 03 Mar 2002 03:28:17 +0000
parents f6990fad0ab3
children ffeba1050226
line wrap: on
line source


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