Clone of mesa.
您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

1234567891011121314151617181920212223242526272829303132333435
  1. # progs/beos/Makefile
  2. TOP = ../..
  3. include $(TOP)/configs/current
  4. # Makefile for BeOS demos
  5. # Written by Brian Paul
  6. # This file is in the public domain.
  7. #
  8. # Modified by Philippe Houdoin
  9. LDFLAGS += -soname=_APP_
  10. LIBS = -L$(TOP)/$(LIB_DIR) -l$(GLUT_LIB) -l$(GLU_LIB) -l$(GL_LIB) $(APP_LIB_DEPS)
  11. INCLUDES = -I. -I- -I../../include
  12. default: demo sample GLInfo
  13. clean:
  14. -rm -f demo sample GLInfo
  15. -rm -f *.o
  16. demo: demo.o
  17. $(LD) demo.o $(LDFLAGS) $(LIBS) -o $@
  18. sample: sample.o
  19. $(LD) sample.o $(LDFLAGS) $(LIBS) -o $@
  20. GTLInfo: GLInfo.o
  21. $(LD) GLInfo.o $(INCLUDES) $(LDFLAGS) $(LIBS) -o $@
  22. .cpp.o:
  23. $(CC) -c $< $(INCLUDES) $(CFLAGS) -o $@