comparison libmpcodecs/Makefile @ 13426:0f92ad66bbb5

encoding to mp2 with libtoolame
author nicodvb
date Tue, 21 Sep 2004 19:50:54 +0000
parents 8bf56817f2e5
children 40ac42c6dd6d
comparison
equal deleted inserted replaced
13425:a87f1a948a24 13426:0f92ad66bbb5
35 VIDEO_SRCS += vd_mpng.c 35 VIDEO_SRCS += vd_mpng.c
36 endif 36 endif
37 37
38 ifeq ($(JPEG),yes) 38 ifeq ($(JPEG),yes)
39 VIDEO_SRCS += vd_ijpg.c 39 VIDEO_SRCS += vd_ijpg.c
40 endif
41
42 ifeq ($(TOOLAME),yes)
43 AUDIO_SRCS += ae_toolame.c
44 EXTRA_INC += $(TOOLAME_EXTRAFLAGS)
40 endif 45 endif
41 46
42 SRCS=$(AUDIO_SRCS) $(VIDEO_SRCS) $(VFILTER_SRCS) $(NATIVE_SRCS) img_format.c 47 SRCS=$(AUDIO_SRCS) $(VIDEO_SRCS) $(VFILTER_SRCS) $(NATIVE_SRCS) img_format.c
43 OBJS=$(SRCS:.c=.o) 48 OBJS=$(SRCS:.c=.o)
44 49