makefile.solaris
上传用户:aoeyumen
上传日期:2007-01-06
资源大小:3329k
文件大小:2k
源码类别:

DVD

开发平台:

Unix_Linux

  1. #
  2. # File: makefile
  3. #
  4. # By: Alex Theo de Jong, NIST
  5. # Description:
  6. # Makefile for MPEG 2 Video player for SUN Solaris
  7. #
  8. # Operating System
  9. OS        = -DSOLARIS -DSOLARIS_SDK_XIL # -DTRUECOLORS
  10. THREADLIB = -lthread -lxil # -L/opt/pthread/lib/libpthread.a #
  11. THREADINC = # -I/opt/pthread/include  # none
  12. # Directories
  13. PIDRDIR = .
  14. INSTLIB = ../../../Lib
  15. INSTINC = ../../../Inc
  16. INSTBIN = ../../../Bin/Solaris2.5
  17. # Tools
  18. CP       = cp
  19. RM       = rm -f
  20. CHMOD    = chmod 666
  21. CPP      = CC # Sparc Compiler # g++ -V2.7.2 # -V2.6.3 
  22. AR       = ar
  23. STRP     = strip
  24. # Flags and options
  25. USE_SHMEM = -DSH_MEM     # Use shared memory for faster display
  26. OPTIMIZE  = -O # 6 # -O2 # # #
  27. WARNINGS  = # -Wall
  28. DEBUG     = # -ggdb # -DTRACE # -DDEBUG
  29. CPPFLAGS  = $(DEBUG) $(WARNINGS) $(OPTIMIZE)  $(OS) 
  30.             $(USE_SHMEM) 
  31.             -I$(PIDRDIR) -I$(INSTINC) $(THREADINC) -I$(OPENWINHOME)/include
  32. # linker flags
  33. LDFLAGS = -L$(INSTLIB) 
  34. LDLIBS  = -lmpeg -lutil -lXext -lX11 -ldl -ldga $(THREADLIB)
  35. # Things to compile
  36. PROGRAM = mpeg2video 
  37. OBJECTS = vstream.o display.o idct.o getpic.o motion.o getvlc.o getblk.o 
  38.           recon.o gethdr.o mpeg2video.o
  39. LIBRARY = libmpeg.a
  40. # Compile lines
  41. all: $(PROGRAM)
  42. install: $(PROGRAM) bin
  43. clean:
  44. $(RM) *.o *~ *.~?~ core $(PROGRAM)
  45. installclean: clean
  46. %.a: $(OBJECTS)
  47. $(AR) vrus $(INSTLIB)/$*.a $(OBJECTS)
  48. $(CP) *.hh $(INSTINC)
  49. $(CHMOD) $(INSTINC)/*.hh
  50. .cc.o:
  51. $(RM) $@
  52. $(CPP) $(CPPFLAGS) -c $<
  53. test: test_disp.cc
  54. $(CPP) -o test test_disp.cc $(CPPFLAGS) -I$(OPENWINHOME)/include -lX11 -lXmu
  55. $(PROGRAM): $(LIBRARY) main.o
  56. $(RM) $(PROGRAM)
  57. $(CPP) -o $(PROGRAM) main.o $(LDFLAGS) $(LDLIBS)
  58. bin: $(PROGRAM)
  59. $(CP) $(PROGRAM) $(INSTBIN)
  60. $(STRP) $(INSTBIN)/$(PROGRAM)
  61. # Dependencies
  62. getblk.o: vstream.hh global.hh
  63. gethdr.o: vstream.hh global.hh
  64. getpic.o: vstream.hh global.hh display.hh
  65. getvlc.o: vstream.hh global.hh getvlc.hh
  66. idct.o: idct.hh
  67. motion.o: vstream.hh global.hh
  68. recon.o: vstream.hh global.hh 
  69. # spatscal.o: vstream.hh global.hh 
  70. display.o: global.hh display.hh
  71. mpeg2video.o: mpeg2video.hh display.hh idct.hh vstream.hh global.hh
  72. vstream.o: vstream.hh
  73. main.o: display.hh idct.hh global.hh mpeg2video.hh