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

GIS编程

开发平台:

Visual C++

  1. #!smake
  2. #
  3. # Copyright (c) Mark J. Kilgard, 1996, 1997.
  4. #
  5. TOP = ../..
  6. include $(TOP)/glutdefs
  7. include $(ROOT)/usr/include/make/commondefs
  8. LD_QUICKSTART_INFO=
  9. LN = ln -s
  10. MV = mv
  11. RM = -rm -rf
  12. TARGETS = bounce gamma gears isosurf offset reflect spin tess_demo 
  13. texobj winpos trdemo
  14. LLDLIBS = $(GLUT) -lGLU -lGL -lXmu -lXi -lXext -lX11 -lm
  15. SRCS = bounce.c gamma.c gears.c isosurf.c offset.c reflect.c spin.c 
  16. tess_demo.c texobj.c winpos.c trdemo.c tr.c
  17. OBJS = $(SRCS:.c=.o)
  18. LCOPTS = -I$(TOP)/include -fullwarn
  19. LWOFF = ,813,852,827,826
  20. LDIRT = *~ *.bak *.pure
  21. default : $(TARGETS)
  22. reflect: reflect.o image.o
  23. $(CCF) -o $@ reflect.o image.o $(LDFLAGS)
  24. trdemo: trdemo.o tr.o
  25. $(CCF) -o $@ trdemo.o tr.o $(LDFLAGS)
  26. include $(COMMONRULES)