Mercurial > mplayer.hg
view libmpcodecs/Makefile @ 4882:2ebd5bed2ce4
cinepak decoder - untested
author | arpi |
---|---|
date | Thu, 28 Feb 2002 01:26:45 +0000 |
parents | eff8a76e515f |
children | c758cf9360d9 |
line wrap: on
line source
include ../config.mak LIBNAME = libmpcodecs.a SRCS=vd.c vd_null.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