⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 makefile

📁 [Game.Programming].Academic - Graphics Gems (6 books source code)
💻
字号:
inclpath = .CC=gccCFLAGS= -UCHOOSE_MANUAL -UDEBUG -USIMPLE -DSTANDALONE -UCLOCK\	-I$(inclpath) -L/lib/pa1.1 -g # DEBUG: turn on debugging output# CLOCK: time the triangulation process ## STANDALONE: run as a separate program. read data from file.#	      If this flag is False, then use the interface procedure #	      triangulate_polygon() instead.## SIMPLE: if defined, turn off randomization#LDFLAGS= -lmobjects= construct.o misc.o monotone.o tri.oexecutable = triangulate$(executable): $(objects)	rm -f $(executable)	$(CC) $(CFLAGS) $(objects) $(LDFLAGS) -o $(executable)$(objects): $(inclpath)/basic.hclean:	rm -f $(objects)

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -