Makefile.sgi
上传用户:xk288cn
上传日期:2007-05-28
资源大小:4876k
文件大小:4k
源码类别:

GIS编程

开发平台:

Visual C++

  1. #!smake
  2. #
  3. # Copyright (c) Mark J. Kilgard, 1995, 1996, 1997, 1998.
  4. #
  5. TOP = ../..
  6. include $(TOP)/glutdefs
  7. include $(ROOT)/usr/include/make/commondefs
  8. LD_QUICKSTART_INFO=
  9. OPTIMIZER = -g
  10. TARGETS = test1 test2 test3 test4 test5 test6 test7 test8 test9 test10 
  11.   test11 test12 test13 test14 test15 test16 test17 test18 test19 
  12.   test20 test21 test22 test23 test24 test25 test26 test27 test28 
  13.   test29 
  14.   bigtest cursor_test menu_test over_test shape_test timer_test 
  15.   keyup_test joy_test atexit_test
  16. RM = -rm -rf
  17. LLDLIBS = $(GLUT) -lGLU -lGL -lXmu -lXi -lXext -lX11 -lm
  18. LCOPTS = -I$(TOP)/include -fullwarn
  19. LWOFF = ,813,852,827,826
  20. LDIRT = *~ *.bak *.pure *.pixie *.Counts *.pix32
  21. default : $(TARGETS)
  22. $(TARGETS) : $(GLUT)
  23. # Do not be surprised if some of these tests fail on previous GLUT releases.
  24. # NOTE: first run of test2 and test29 can fail since time
  25. # dependent, but run twice.
  26. test : $(TARGETS)
  27. @GLUT_TEST_ALT_DISPLAY=$$DISPLAY ./test1
  28. -./test2
  29. @./test2
  30. @./test3
  31. @./test4
  32. @./test5
  33. @./test7
  34. @./test8
  35. @./test9
  36. @./test10
  37. @./test11
  38. @./test12
  39. @./test13
  40. @./test14
  41. @./test15
  42. @./test16
  43. @./test17
  44. @./test18
  45. @./test19
  46. @./test20
  47. @./test21
  48. @./test22
  49. @./test23
  50. @./test24
  51. @./test25
  52. @./test26
  53. @./test27
  54. @./test28
  55. -./test29
  56. @./test29
  57. SIFT_OUTPUT = 2>&1 | grep '^[A-Za-z]'
  58. pure_test : $(TARGETS)
  59. purify -windows=no test1 $(SIFT_OUTPUT) ; test1.pure $(SIFT_OUTPUT) ; /bin/rm ./test1.pure
  60. purify -windows=no test2 $(SIFT_OUTPUT) ; test2.pure $(SIFT_OUTPUT) ; /bin/rm ./test2.pure
  61. purify -windows=no test3 $(SIFT_OUTPUT) ; test3.pure $(SIFT_OUTPUT) ; /bin/rm ./test3.pure
  62. purify -windows=no test4 $(SIFT_OUTPUT) ; test4.pure $(SIFT_OUTPUT) ; /bin/rm ./test4.pure
  63. purify -windows=no test5 $(SIFT_OUTPUT) ; test5.pure $(SIFT_OUTPUT) ; /bin/rm ./test5.pure
  64. purify -windows=no test7 $(SIFT_OUTPUT) ; test7.pure $(SIFT_OUTPUT) ; /bin/rm ./test7.pure
  65. purify -windows=no test8 $(SIFT_OUTPUT) ; test8.pure $(SIFT_OUTPUT) ; /bin/rm ./test8.pure
  66. purify -windows=no test9 $(SIFT_OUTPUT) ; test9.pure $(SIFT_OUTPUT) ; /bin/rm ./test9.pure
  67. purify -windows=no test10 $(SIFT_OUTPUT) ; test10.pure $(SIFT_OUTPUT) ; /bin/rm ./test10.pure
  68. purify -windows=no test11 $(SIFT_OUTPUT) ; test11.pure $(SIFT_OUTPUT) ; /bin/rm ./test11.pure
  69. purify -windows=no test12 $(SIFT_OUTPUT) ; test12.pure $(SIFT_OUTPUT) ; /bin/rm ./test12.pure
  70. purify -windows=no test13 $(SIFT_OUTPUT) ; test13.pure $(SIFT_OUTPUT) ; /bin/rm ./test13.pure
  71. purify -windows=no test14 $(SIFT_OUTPUT) ; test14.pure $(SIFT_OUTPUT) ; /bin/rm ./test14.pure
  72. purify -windows=no test15 $(SIFT_OUTPUT) ; test15.pure $(SIFT_OUTPUT) ; /bin/rm ./test15.pure
  73. purify -windows=no test16 $(SIFT_OUTPUT) ; test16.pure $(SIFT_OUTPUT) ; /bin/rm ./test16.pure
  74. purify -windows=no test17 $(SIFT_OUTPUT) ; test17.pure $(SIFT_OUTPUT) ; /bin/rm ./test17.pure
  75. purify -windows=no test18 $(SIFT_OUTPUT) ; test18.pure $(SIFT_OUTPUT) ; /bin/rm ./test18.pure
  76. purify -windows=no test19 $(SIFT_OUTPUT) ; test19.pure $(SIFT_OUTPUT) ; /bin/rm ./test19.pure
  77. purify -windows=no test20 $(SIFT_OUTPUT) ; test20.pure $(SIFT_OUTPUT) ; /bin/rm ./test20.pure
  78. purify -windows=no test21 $(SIFT_OUTPUT) ; test21.pure $(SIFT_OUTPUT) ; /bin/rm ./test21.pure
  79. purify -windows=no test22 $(SIFT_OUTPUT) ; test22.pure $(SIFT_OUTPUT) ; /bin/rm ./test22.pure
  80. purify -windows=no test23 $(SIFT_OUTPUT) ; test23.pure $(SIFT_OUTPUT) ; /bin/rm ./test23.pure
  81. purify -windows=no test24 $(SIFT_OUTPUT) ; test24.pure $(SIFT_OUTPUT) ; /bin/rm ./test24.pure
  82. purify -windows=no test25 $(SIFT_OUTPUT) ; test25.pure $(SIFT_OUTPUT) ; /bin/rm ./test25.pure
  83. purify -windows=no test26 $(SIFT_OUTPUT) ; test26.pure $(SIFT_OUTPUT) ; /bin/rm ./test26.pure
  84. purify -windows=no test27 $(SIFT_OUTPUT) ; test27.pure $(SIFT_OUTPUT) ; /bin/rm ./test27.pure
  85. purify -windows=no test28 $(SIFT_OUTPUT) ; test28.pure $(SIFT_OUTPUT) ; /bin/rm ./test28.pure
  86. purify -windows=no test29 $(SIFT_OUTPUT) ; test29.pure $(SIFT_OUTPUT) ; /bin/rm ./test29.pure
  87. include $(COMMONRULES)