Makefile
上传用户:jxp0626
上传日期:2007-01-08
资源大小:102k
文件大小:0k
源码类别:

流媒体/Mpeg4/MP4

开发平台:

Unix_Linux

  1. CFLAGS= -O2 -Wall -g
  2. LDFLAGS= -g
  3. OBJS= common.o mpegvideo.o h263enc.o jrevdct.o jfdctfst.o 
  4.       mpegaudio.o ac3enc.o mjpegenc.o resample.o dsputil.o 
  5.       motion_est.o
  6. LIB= libav.a
  7. all: $(LIB)
  8. $(LIB): $(OBJS)
  9. rm -f $@
  10. ar rcs $@ $(OBJS)
  11. dsputil.o: dsputil.c dsputil.h
  12. %.o: %.c
  13. gcc $(CFLAGS) -c -o $@ $< 
  14. clean: 
  15. rm -f *.o *~ *.a