Mercurial > mplayer.hg
annotate libmpcodecs/Makefile @ 15305:d185d5391694
compilation fix for codecs2html
author | diego |
---|---|
date | Sat, 30 Apr 2005 16:15:07 +0000 |
parents | 854990f357ee |
children | af245d15f502 |
rev | line source |
---|---|
4878 | 1 |
2 include ../config.mak | |
3 | |
4 LIBNAME = libmpcodecs.a | |
5550 | 5 LIBNAME2 = libmpencoders.a |
4878 | 6 |
8024 | 7 AUDIO_SRCS_LIB=ad_liba52.c ad_hwac3.c ad_mp3lib.c |
12827 | 8 AUDIO_SRCS_NAT=ad_alaw.c ad_dk3adpcm.c ad_pcm.c ad_dvdpcm.c ad_imaadpcm.c ad_msadpcm.c ad_msgsm.c ad_ra1428.c |
14276 | 9 AUDIO_SRCS_OPT=ad_acm.c ad_dshow.c ad_dmo.c ad_qtaudio.c ad_ffmpeg.c ad_faad.c ad_libvorbis.c ad_libmad.c ad_realaud.c ad_libdv.c ad_twin.c |
8024 | 10 AUDIO_SRCS=dec_audio.c ad.c $(AUDIO_SRCS_LIB) $(AUDIO_SRCS_NAT) $(AUDIO_SRCS_OPT) |
11 | |
12 VIDEO_SRCS_LIB=vd_libmpeg2.c vd_nuv.c vd_lzo.c | |
12827 | 13 VIDEO_SRCS_NAT=vd_null.c vd_raw.c vd_hmblck.c vd_mpegpes.c vd_mtga.c vd_sgi.c |
11436 | 14 VIDEO_SRCS_OPT=vd_realvid.c vd_ffmpeg.c vd_dshow.c vd_dmo.c vd_vfw.c vd_vfwex.c vd_odivx.c vd_divx4.c vd_zrmjpeg.c vd_xanim.c vd_xvid.c vd_xvid4.c vd_libdv.c vd_qtvideo.c vd_theora.c |
8024 | 15 VIDEO_SRCS=dec_video.c vd.c $(VIDEO_SRCS_NAT) $(VIDEO_SRCS_LIB) $(VIDEO_SRCS_OPT) |
16 | |
12337
6f1b4c989914
soft skipping for mencoder. rather than skipping decoding/filtering
rfelker
parents:
12334
diff
changeset
|
17 VFILTER_SRCS=vf.c vf_vo.c vf_crop.c vf_expand.c vf_scale.c vf_format.c vf_noformat.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 vf_bmovl.c vf_2xsai.c vf_unsharp.c vf_swapuv.c vf_il.c vf_boxblur.c vf_sab.c vf_smartblur.c vf_perspective.c vf_down3dright.c vf_field.c vf_denoise3d.c vf_hqdn3d.c vf_detc.c vf_telecine.c vf_tfields.c vf_ivtc.c vf_ilpack.c vf_dsize.c vf_decimate.c vf_softpulldown.c vf_tinterlace.c vf_pullup.c pullup.c vf_framestep.c vf_tile.c vf_delogo.c vf_fil.c vf_hue.c vf_spp.c vf_yuvcsp.c vf_filmdint.c vf_kerndeint.c vf_rgbtest.c vf_qp.c vf_phase.c vf_divtc.c vf_harddup.c vf_softskip.c |
11141 | 18 ifeq ($(HAVE_FFPOSTPROCESS),yes) |
19 VFILTER_SRCS += vf_pp.c | |
20 endif | |
21 | |
15234 | 22 ENCODER_SRCS=ve.c ve_divx4.c ve_lavc.c ve_vfw.c ve_raw.c ve_libdv.c ve_xvid.c ve_xvid4.c ve_qtvideo.c ve_nuv.c ve_x264.c ae.c ae_pcm.c |
8024 | 23 |
12827 | 24 NATIVE_SRCS=native/RTjpegN.c native/minilzo.c native/nuppelvideo.c native/xa_gsm.c native/decode144.c native/decode288.c |
5029 | 25 |
5840
4e3cf9473628
Allow disabling of libfame and allow to enforce (not) building libavcodec.
atmos4
parents:
5774
diff
changeset
|
26 ifeq ($(FAME),yes) |
4e3cf9473628
Allow disabling of libfame and allow to enforce (not) building libavcodec.
atmos4
parents:
5774
diff
changeset
|
27 VFILTER_SRCS += vf_fame.c |
4e3cf9473628
Allow disabling of libfame and allow to enforce (not) building libavcodec.
atmos4
parents:
5774
diff
changeset
|
28 endif |
4e3cf9473628
Allow disabling of libfame and allow to enforce (not) building libavcodec.
atmos4
parents:
5774
diff
changeset
|
29 |
11662
173f22eb0505
vf_zrmjpeg MJPEG encoding filter, works together with vo_zr2. Only YV12
rik
parents:
11600
diff
changeset
|
30 ifeq ($(ZORAN),yes) |
173f22eb0505
vf_zrmjpeg MJPEG encoding filter, works together with vo_zr2. Only YV12
rik
parents:
11600
diff
changeset
|
31 VFILTER_SRCS += vf_zrmjpeg.c |
173f22eb0505
vf_zrmjpeg MJPEG encoding filter, works together with vo_zr2. Only YV12
rik
parents:
11600
diff
changeset
|
32 endif |
173f22eb0505
vf_zrmjpeg MJPEG encoding filter, works together with vo_zr2. Only YV12
rik
parents:
11600
diff
changeset
|
33 |
5029 | 34 ifeq ($(PNG),yes) |
5344 | 35 VIDEO_SRCS += vd_mpng.c |
5029 | 36 endif |
37 | |
38 ifeq ($(JPEG),yes) | |
5344 | 39 VIDEO_SRCS += vd_ijpg.c |
5029 | 40 endif |
4878 | 41 |
13426 | 42 ifeq ($(TOOLAME),yes) |
15234 | 43 ENCODER_SRCS += ae_toolame.c |
13426 | 44 EXTRA_INC += $(TOOLAME_EXTRAFLAGS) |
45 endif | |
46 | |
15234 | 47 ifeq ($(CONFIG_MP3LAME),yes) |
48 ENCODER_SRCS += ae_lame.c | |
49 endif | |
50 | |
51 ifeq ($(CONFIG_LIBAVCODEC),yes) | |
52 ENCODER_SRCS += ae_lavc.c | |
53 endif | |
54 | |
15259 | 55 ifeq ($(FAAC),yes) |
56 ENCODER_SRCS += ae_faac.c | |
57 endif | |
58 | |
5607 | 59 SRCS=$(AUDIO_SRCS) $(VIDEO_SRCS) $(VFILTER_SRCS) $(NATIVE_SRCS) img_format.c |
4878 | 60 OBJS=$(SRCS:.c=.o) |
61 | |
5550 | 62 SRCS2=$(ENCODER_SRCS) |
63 OBJS2=$(SRCS2:.c=.o) | |
64 | |
13311
8bf56817f2e5
Make --with-x264incdir work, patch by Jan Knutar <jknutar at nic.fi>
diego
parents:
13166
diff
changeset
|
65 CFLAGS = $(OPTFLAGS) -I. -Inative -I.. -I../libmpdemux -I../loader $(EXTRA_INC) $(X264_INC) -D_GNU_SOURCE |
4878 | 66 |
67 .SUFFIXES: .c .o | |
68 | |
69 # .PHONY: all clean | |
70 | |
71 .c.o: | |
72 $(CC) -c $(CFLAGS) -o $@ $< | |
73 | |
5550 | 74 all: $(LIBNAME) $(LIBNAME2) |
75 | |
4878 | 76 $(LIBNAME): $(OBJS) |
77 $(AR) r $(LIBNAME) $(OBJS) | |
12634 | 78 $(RANLIB) $(LIBNAME) |
4878 | 79 |
5550 | 80 $(LIBNAME2): $(OBJS2) |
81 $(AR) r $(LIBNAME2) $(OBJS2) | |
12634 | 82 $(RANLIB) $(LIBNAME2) |
4878 | 83 |
84 clean: | |
85 rm -f *.o *.a *~ | |
14138
40ac42c6dd6d
make clean should also clean the native subdirectory.
diego
parents:
13426
diff
changeset
|
86 rm -f native/*.o native/*.a native/*~ |
4878 | 87 |
88 distclean: | |
5603 | 89 rm -f Makefile.bak $(OBJS) $(OBJS2) $(LIBNAME) $(LIBNAME2) *~ .depend |
4878 | 90 |
91 dep: depend | |
92 | |
93 depend: | |
5550 | 94 $(CC) -MM $(CFLAGS) $(SRCS) $(SRCS2) 1>.depend |
4878 | 95 |
96 # | |
97 # include dependency files if they exist | |
98 # | |
99 ifneq ($(wildcard .depend),) | |
100 include .depend | |
101 endif | |
102 |