Mercurial > mplayer.hg
annotate libmpcodecs/Makefile @ 7757:03c707b25fdc
-fixed-vo support, based on patch by .so :)
author | arpi |
---|---|
date | Wed, 16 Oct 2002 19:31:07 +0000 |
parents | 7637b72ef1f9 |
children | daeb5f93ce82 |
rev | line source |
---|---|
4878 | 1 |
2 include ../config.mak | |
3 | |
4 LIBNAME = libmpcodecs.a | |
5550 | 5 LIBNAME2 = libmpencoders.a |
4878 | 6 |
7173 | 7 AUDIO_SRCS=dec_audio.c ad.c ad_liba52.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_mp3lib.c ad_msadpcm.c ad_pcm.c ad_roqaudio.c ad_msgsm.c ad_faad.c ad_libvorbis.c ad_libmad.c ad_realaud.c ad_libdv.c |
7362 | 8 VIDEO_SRCS=dec_video.c vd.c vd_null.c vd_realvid.c vd_cinepak.c vd_qtrpza.c vd_ffmpeg.c vd_dshow.c vd_vfw.c vd_vfwex.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_mpegpes.c vd_svq1.c vd_xvid.c vd_libdv.c vd_lcl.c vd_mtga.c |
7755
7637b72ef1f9
new filter: 1bpp - converts 1bpp image to yuv/rgb 8/16/32 bpp
arpi
parents:
7729
diff
changeset
|
9 VFILTER_SRCS=vf.c vf_vo.c vf_crop.c vf_expand.c vf_pp.c vf_scale.c vf_format.c vf_yuy2.c vf_flip.c vf_rgb2bgr.c vf_rotate.c vf_mirror.c vf_palette.c vf_lavc.c vf_dvbscale.c vf_cropdetect.c vf_test.c vf_noise.c vf_yvu9.c vf_rectangle.c vf_lavcdeint.c vf_eq.c vf_eq2.c vf_halfpack.c vf_dint.c vf_1bpp.c |
7456 | 10 ENCODER_SRCS=ve.c ve_divx4.c ve_lavc.c ve_vfw.c ve_rawrgb.c ve_libdv.c ve_xvid.c |
6506 | 11 NATIVE_SRCS=native/RTjpegN.c native/cinepak.c native/cyuv.c native/fli.c native/minilzo.c native/msvidc.c native/nuppelvideo.c native/qtrle.c native/qtrpza.c native/qtsmc.c native/roqav.c native/xa_gsm.c native/svq1.c |
5029 | 12 |
5840
4e3cf9473628
Allow disabling of libfame and allow to enforce (not) building libavcodec.
atmos4
parents:
5774
diff
changeset
|
13 ifeq ($(FAME),yes) |
4e3cf9473628
Allow disabling of libfame and allow to enforce (not) building libavcodec.
atmos4
parents:
5774
diff
changeset
|
14 VFILTER_SRCS += vf_fame.c |
4e3cf9473628
Allow disabling of libfame and allow to enforce (not) building libavcodec.
atmos4
parents:
5774
diff
changeset
|
15 endif |
4e3cf9473628
Allow disabling of libfame and allow to enforce (not) building libavcodec.
atmos4
parents:
5774
diff
changeset
|
16 |
5029 | 17 ifeq ($(PNG),yes) |
5344 | 18 VIDEO_SRCS += vd_mpng.c |
5029 | 19 endif |
20 | |
21 ifeq ($(JPEG),yes) | |
5344 | 22 VIDEO_SRCS += vd_ijpg.c |
5029 | 23 endif |
4878 | 24 |
7729 | 25 ifeq ($(LZO),yes) |
26 VIDEO_SRCS += vd_lzo.c | |
27 endif | |
28 | |
5607 | 29 SRCS=$(AUDIO_SRCS) $(VIDEO_SRCS) $(VFILTER_SRCS) $(NATIVE_SRCS) img_format.c |
4878 | 30 OBJS=$(SRCS:.c=.o) |
31 | |
5550 | 32 SRCS2=$(ENCODER_SRCS) |
33 OBJS2=$(SRCS2:.c=.o) | |
34 | |
7073
b69ddd4d3bb9
removed -W -Wall -g and other gcc-specific warning/debug options
arpi
parents:
7062
diff
changeset
|
35 CFLAGS = $(OPTFLAGS) -I. -Inative -I.. -I../libmpdemux -I../loader $(EXTRA_INC) |
4878 | 36 |
37 .SUFFIXES: .c .o | |
38 | |
39 # .PHONY: all clean | |
40 | |
41 .c.o: | |
42 $(CC) -c $(CFLAGS) -o $@ $< | |
43 | |
5550 | 44 all: $(LIBNAME) $(LIBNAME2) |
45 | |
4878 | 46 $(LIBNAME): $(OBJS) |
47 $(AR) r $(LIBNAME) $(OBJS) | |
48 | |
5550 | 49 $(LIBNAME2): $(OBJS2) |
50 $(AR) r $(LIBNAME2) $(OBJS2) | |
4878 | 51 |
52 clean: | |
53 rm -f *.o *.a *~ | |
54 | |
55 distclean: | |
5603 | 56 rm -f Makefile.bak $(OBJS) $(OBJS2) $(LIBNAME) $(LIBNAME2) *~ .depend |
4878 | 57 |
58 dep: depend | |
59 | |
60 depend: | |
5550 | 61 $(CC) -MM $(CFLAGS) $(SRCS) $(SRCS2) 1>.depend |
4878 | 62 |
63 # | |
64 # include dependency files if they exist | |
65 # | |
66 ifneq ($(wildcard .depend),) | |
67 include .depend | |
68 endif | |
69 |