makefile

来自「[Game.Programming].Academic - Graphics G」· 代码 · 共 34 行

TXT
34
字号
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 + =
减小字号Ctrl + -
显示快捷键?