📄 makefile
字号:
# Makefile for GLUT## NOTICE: The OpenGL Utility Toolkit (GLUT) distribution contains source# code published in a book titled "Programming OpenGL for the X Window# System" (ISBN: 0-201-48359-9) published by Addison-Wesley. The# programs and associated files contained in the distribution were# developed by Mark J. Kilgard and are Copyright 1994, 1995, 1996 by Mark# J. Kilgard (unless otherwise noted). The programs are not in the# public domain, but they are freely distributable without licensing# fees. These programs are provided without guarantee or warrantee# expressed or implied.## GLUT source included with Mesa with permission from Mark Kilgard.# src/glut/beos/MakefileTOP = ../../..include $(TOP)/configs/currentGLUT_MAJOR = 3GLUT_MINOR = 7GLUT_TINY = 1CPP_SOURCES = \ glutBlocker.cpp \ glutInit.cpp \ glutWindow.cpp \ glutEvent.cpp \ glutCallback.cpp \ glutOverlay.cpp \ glutGet.cpp \ glutColor.cpp \ glutCursor.cpp \ glutMenu.cpp \ glutDstr.cpp \ beos_x11.cppC_SOURCES = \ glut_8x13.c \ glut_9x15.c \ glut_bitmap.c \ glut_bwidth.c \ glut_hel10.c \ glut_hel12.c \ glut_hel18.c \ glut_tr10.c \ glut_tr24.c \ glut_mroman.c \ glut_roman.c \ glut_stroke.c \ glut_swidth.c \ glut_shapes.c \ glut_teapot.c \ glut_vidresize.c \ glut_util.c \ glut_ext.cOBJECTS = \ $(CPP_SOURCES:.cpp=.o) \ $(C_SOURCES:.c=.o)INCLUDES = \ -I. \ -I- \ -I$(TOP)/include# Rules.cpp.o: $(CC) -c $< $(INCLUDES) $(CFLAGS) $(GLUT_CFLAGS) -o $@.c.o: $(CC) -c $< $(INCLUDES) $(CFLAGS) $(GLUT_CFLAGS) -o $@# ---- TARGETSdefault: $(LIB_DIR) $(LIB_DIR)/$(GLUT_LIB_NAME)# Create the lib directory if missing$(LIB_DIR): mkdir $(LIB_DIR)# Make the library$(LIB_DIR)/$(GLUT_LIB_NAME): depend $(OBJECTS) @$(TOP)/bin/mklib -o $(GLUT_LIB) -major $(GLUT_MAJOR) -minor $(GLUT_MINOR) -patch $(GLUT_TINY) \ -install $(LIB_DIR) $(MKLIB_OPTIONS) $(GLUT_LIB_DEPS) \ $(OBJECTS)clean: -rm -f *.odepend: $(SOURCES) touch depend $(MKDEP) $(MKDEP_OPTIONS) $(INCLUDES) $(SOURCES) > /dev/null include depend
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -