makefile
来自「Graphics Gems 源码 a collection of algorit」· 代码 · 共 23 行
TXT
23 行
# FILENAME: Makefile [revised 18 AUG 90]# # AUTHOR: Kelvin Thompson# # DESCRIPTION: Makefile for anti-aliased line rendering demo.# locations of Utah RLE informationUTAH_RLE_INCLUDE_DIR = /usr/contrib/includeUTAH_RLE_LIB_FILE = /usr/contrib/lib/librle.aCFLAGS = -I$(UTAH_RLE_INCLUDE_DIR)OBJS = AAMain.o AALines.o AATables.o utah.o.o : .c $(CC) -c $(CFLAGS) $(CPPFLAGS) $<AALine : $(OBJS) cc $(CFLAGS) -o $@ $(OBJS) $(UTAH_RLE_LIB_FILE) -lmclean: /bin/rm -f $(OBJS) AALine
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?