📄 makefile
字号:
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 + -