Imakefile
上传用户:xk288cn
上传日期:2007-05-28
资源大小:4876k
文件大小:1k
源码类别:

GIS编程

开发平台:

Visual C++

  1. /* Copyright (c) Mark J. Kilgard, 1994. */
  2. #include "../../../Glut.cf"
  3. TARGETS = gliq
  4. SRCS = board.c game.c gliq.c pick.c score.c tb.c trackball.c
  5. AllTarget($(TARGETS))
  6. NormalGlutProgramTarget(gliq,board.o game.o gliq.o pick.o score.o tb.o trackball.o)
  7. LinkFile(trackball.c, ../../examples/trackball.c)
  8. LinkFile(trackball.h, ../../examples/trackball.h)
  9. trackball.o: trackball.h
  10. tb.o: trackball.h
  11. gliq.h: trackball.h
  12. board.c: gliq.h
  13. game.c: gliq.h
  14. gliq.c: gliq.h
  15. pick.c: gliq.h
  16. score.c: gliq.h
  17. /* some old imake configs do setup "make depend" dependencies on linked files */
  18. depend:: trackball.c trackball.h tb.c tb.h
  19. DependTarget()