Makefile
上传用户:hkgotone
上传日期:2013-02-17
资源大小:293k
文件大小:2k
源码类别:

Windows Mobile

开发平台:

C/C++

  1. # Makefile for mpeg2encode
  2. # Copyright (C) 1996, MPEG Software Simulation Group. All Rights Reserved. */
  3. #
  4. # Disclaimer of Warranty
  5. #
  6. # These software programs are available to the user without any license fee or
  7. # royalty on an "as is" basis.  The MPEG Software Simulation Group disclaims
  8. # any and all warranties, whether express, implied, or statuary, including any
  9. # implied warranties or merchantability or of fitness for a particular
  10. # purpose.  In no event shall the copyright-holder be liable for any
  11. # incidental, punitive, or consequential damages of any kind whatsoever
  12. # arising from the use of these programs.
  13. #
  14. # This disclaimer of warranty extends to the user of these programs and user's
  15. # customers, employees, agents, transferees, successors, and assigns.
  16. #
  17. # The MPEG Software Simulation Group does not represent or warrant that the
  18. # programs furnished hereunder are free of infringement of any third-party
  19. # patents.
  20. #
  21. # Commercial implementations of MPEG-1 and MPEG-2 video, including shareware,
  22. # are subject to royalty fees to patent holders.  Many of these patents are
  23. # general enough such that they are unavoidable regardless of implementation
  24. # design.
  25. #
  26. #
  27. # select one of the following CC CFLAGS settings
  28. #
  29. # GNU gcc
  30. #
  31. CC = gcc
  32. CFLAGS = -O2 -Wall
  33. OBJ = mpeg2enc.o conform.o putseq.o putpic.o puthdr.o putmpg.o putvlc.o putbits.o motion.o predict.o readpic.o writepic.o transfrm.o fdctref.o idct.o quantize.o ratectl.o stats.o
  34. all: mpeg2encode
  35. pc: mpeg2enc.exe
  36. clean:
  37. rm -f *.o *% core mpeg2encode
  38. mpeg2enc.exe: mpeg2encode
  39. coff2exe mpeg2enc
  40. mpeg2encode: $(OBJ)
  41. $(CC) $(CFLAGS) -o mpeg2encode $(OBJ) -lm
  42. conform.o : conform.c config.h global.h mpeg2enc.h 
  43. fdctref.o : fdctref.c config.h 
  44. idct.o : idct.c config.h 
  45. motion.o : motion.c config.h global.h mpeg2enc.h 
  46. mpeg2enc.o : mpeg2enc.c config.h global.h mpeg2enc.h 
  47. predict.o : predict.c config.h global.h mpeg2enc.h 
  48. putbits.o : putbits.c config.h 
  49. puthdr.o : puthdr.c config.h global.h mpeg2enc.h 
  50. putmpg.o : putmpg.c config.h global.h mpeg2enc.h 
  51. putpic.o : putpic.c config.h global.h mpeg2enc.h 
  52. putseq.o : putseq.c config.h global.h mpeg2enc.h 
  53. putvlc.o : putvlc.c config.h global.h mpeg2enc.h vlc.h 
  54. quantize.o : quantize.c config.h global.h mpeg2enc.h 
  55. ratectl.o : ratectl.c config.h global.h mpeg2enc.h 
  56. readpic.o : readpic.c config.h global.h mpeg2enc.h 
  57. stats.o : stats.c config.h global.h mpeg2enc.h 
  58. transfrm.o : transfrm.c config.h global.h mpeg2enc.h 
  59. writepic.o : writepic.c config.h global.h mpeg2enc.h