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

GIS编程

开发平台:

Visual C++

  1. /* Copyright (c) Mark J. Kilgard, 1994. */
  2. #include "../../../Glut.cf"
  3. TARGETS = smooth
  4. SRCS = glm.c gltx.c smooth.c trackball.c gltb.c
  5. AllTarget($(TARGETS))
  6. NormalGlutProgramTarget(smooth,glm.o gltx.o smooth.o gltb.o trackball.o)
  7. LinkFile(trackball.c, ../../examples/trackball.c)
  8. LinkFile(trackball.h, ../../examples/trackball.h)
  9. trackball.o: trackball.h
  10. gltb.o: trackball.h gltb.h
  11. /* some old imake configs do setup "make depend" dependencies on linked files */
  12. depend:: trackball.c trackball.h
  13. DependTarget()