diff libmpcodecs/Makefile @ 5029:ef8a43b74075

Add IJPG decoder.
author pontscho
date Sun, 10 Mar 2002 22:49:18 +0000
parents c32191b02a66
children abea2deab4d6
line wrap: on
line diff
--- a/libmpcodecs/Makefile	Sun Mar 10 17:51:52 2002 +0000
+++ b/libmpcodecs/Makefile	Sun Mar 10 22:49:18 2002 +0000
@@ -3,7 +3,15 @@
 
 LIBNAME = libmpcodecs.a
 
-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_rle.c vd_msvidc.c vd_fli.c vd_qtrle.c vd_qtsmc.c vd_roqvideo.c vd_cyuv.c vd_nuv.c vd_mpng.c vd_libmpeg2.c
+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_rle.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
+
+ifeq ($(PNG),yes)
+SRCS += vd_mpng.c
+endif
+
+ifeq ($(JPEG),yes)
+SRCS += vd_ijpg.c
+endif
 
 OBJS=$(SRCS:.c=.o)