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

Windows Mobile

开发平台:

C/C++

  1. # Makefile for mpeg2decode
  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. #WARNINGS = -Wall
  28. #VERIFY = -DVERIFY
  29. #disable this flag if you do not want bitstream element tracing 
  30. #this will speed up the decoder some since it does not have to test
  31. #the trace flag at several critical inner loop locations.
  32. TRACE = -DTRACE
  33. #disable this flag if you do not need verbose trace, such as
  34. #header information
  35. VERBOSE = -DVERBOSE
  36. # uncomment the following two lines if you want to include X11 support
  37. #USE_DISP = -DDISPLAY
  38. #LIBS = -lX11
  39. # uncomment the following two lines if you want to use shared memory
  40. # (faster display if server and client run on the same machine)
  41. #USE_SHMEM = -DSH_MEM
  42. #LIBS = -lXext -lX11
  43. # if your X11 include files / libraries are in a non standard location:
  44. # set INCLUDEDIR to -I followed by the appropriate include file path and
  45. # set LIBRARYDIR to -L followed by the appropriate library path and
  46. #INCLUDEDIR = -I/usr/openwin/include
  47. #LIBRARYDIR = -L/usr/openwin/lib
  48. #
  49. # GNU gcc
  50. #
  51. CC = gcc
  52. CFLAGS = -O2 $(USE_DISP) $(USE_SHMEM) $(INCLUDEDIR) $(TRACE) $(VERBOSE) $(VERIFY) $(WARNINGS)
  53. OBJ = mpeg2dec.o getpic.o motion.o getvlc.o gethdr.o getblk.o getbits.o store.o recon.o spatscal.o idct.o idctref.o display.o systems.o subspic.o verify.o
  54. all: mpeg2decode
  55. pc: mpeg2dec.exe
  56. clean:
  57. rm -f *.o *% core mpeg2decode
  58. mpeg2dec.exe: mpeg2decode
  59. coff2exe mpeg2dec
  60. mpeg2decode: $(OBJ)
  61. $(CC) $(CFLAGS) $(LIBRARYDIR) -o mpeg2decode $(OBJ) -lm $(LIBS)
  62. display.o : display.c config.h global.h mpeg2dec.h 
  63. getbits.o : getbits.c config.h global.h mpeg2dec.h 
  64. getblk.o : getblk.c config.h global.h mpeg2dec.h 
  65. gethdr.o : gethdr.c config.h global.h mpeg2dec.h 
  66. getpic.o : getpic.c config.h global.h mpeg2dec.h 
  67. getvlc.o : getvlc.c config.h global.h mpeg2dec.h getvlc.h 
  68. idct.o : idct.c config.h 
  69. idctref.o : idctref.c config.h 
  70. motion.o : motion.c config.h global.h mpeg2dec.h 
  71. mpeg2dec.o : mpeg2dec.c config.h global.h mpeg2dec.h 
  72. recon.o : recon.c config.h global.h mpeg2dec.h 
  73. spatscal.o : spatscal.c config.h global.h mpeg2dec.h 
  74. store.o : store.c config.h global.h mpeg2dec.h 
  75. # additions since July 4, 1994 edition
  76. systems.o : systems.c config.h global.h mpeg2dec.h 
  77. subspic.o : subspic.c config.h global.h mpeg2dec.h 
  78. verify.o:   verify.c config.h global.h mpeg2dec.h