Mercurial > mplayer.hg
annotate libmpcodecs/Makefile @ 5512:4ccfa77d8e86
postprocessing filter (fixme: -pp 0)
author | arpi |
---|---|
date | Sun, 07 Apr 2002 03:20:41 +0000 |
parents | d0d029fda134 |
children | 868c13f78f08 |
rev | line source |
---|---|
4878 | 1 |
2 include ../config.mak | |
3 | |
4 LIBNAME = libmpcodecs.a | |
5 | |
5479
22b289d7f87f
libmad support, rewritten from scratch using Xine decoder as sample
arpi
parents:
5476
diff
changeset
|
6 AUDIO_SRCS=dec_audio.c ad.c ad_a52.c ad_acm.c ad_alaw.c ad_dk3adpcm.c ad_dshow.c ad_dvdpcm.c ad_ffmpeg.c ad_hwac3.c ad_imaadpcm.c ad_mp3.c ad_msadpcm.c ad_pcm.c ad_roqaudio.c ad_msgsm.c ad_faad.c ad_vorbis.c ad_libmad.c |
5476 | 7 VIDEO_SRCS=dec_video.c vd.c vd_null.c vd_cinepak.c vd_qtrpza.c vd_ffmpeg.c vd_dshow.c vd_vfw.c vd_odivx.c vd_divx4.c vd_raw.c vd_xanim.c vd_msvidc.c vd_fli.c vd_qtrle.c vd_qtsmc.c vd_roqvideo.c vd_cyuv.c vd_nuv.c vd_libmpeg2.c vd_msrle.c vd_huffyuv.c vd_zlib.c vd_mpegpes.c |
5512 | 8 VFILTER_SRCS=vf.c vf_vo.c vf_crop.c vf_expand.c vf_pp.c |
5029 | 9 |
10 ifeq ($(PNG),yes) | |
5344 | 11 VIDEO_SRCS += vd_mpng.c |
5029 | 12 endif |
13 | |
14 ifeq ($(JPEG),yes) | |
5344 | 15 VIDEO_SRCS += vd_ijpg.c |
5029 | 16 endif |
4878 | 17 |
5507
d0d029fda134
video filter layer - written from scratch, but inspired a lot by Fredrik Kuivinen's patch
arpi
parents:
5479
diff
changeset
|
18 SRCS=$(AUDIO_SRCS) $(VIDEO_SRCS) $(VFILTER_SRCS) |
4878 | 19 OBJS=$(SRCS:.c=.o) |
20 | |
21 CFLAGS = -Wall $(OPTFLAGS) -I. -I.. -I../libmpdemux -I../loader $(EXTRA_INC) | |
22 | |
23 .SUFFIXES: .c .o | |
24 | |
25 # .PHONY: all clean | |
26 | |
27 .c.o: | |
28 $(CC) -c $(CFLAGS) -o $@ $< | |
29 | |
30 $(LIBNAME): $(OBJS) | |
31 $(AR) r $(LIBNAME) $(OBJS) | |
32 | |
33 all: $(LIBNAME) | |
34 | |
35 clean: | |
36 rm -f *.o *.a *~ | |
37 | |
38 distclean: | |
39 rm -f Makefile.bak *.o *.a *~ .depend | |
40 | |
41 dep: depend | |
42 | |
43 depend: | |
44 $(CC) -MM $(CFLAGS) $(SRCS) 1>.depend | |
45 | |
46 # | |
47 # include dependency files if they exist | |
48 # | |
49 ifneq ($(wildcard .depend),) | |
50 include .depend | |
51 endif | |
52 |