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

📄 makefile

📁 htp是一个HTML预处理器。页面可以用htp扩展的类HTML的宏编写。这可以简化维护一个一致外观的Web页面集.
💻
字号:
## makefile - htp## HTML pre-processor# Copyright (c) 1995-1996 Jim Nelson.  All rights reserved.### project name and memory model#MAIN = htp## development tools#CC = ccLINK = cc## tool command-line options ... notice that these are geared towards GNU#CCOPT = -c -Wall -O2LOPT = -lc## object files used# declare OBJ2 if another line is needed#OBJ1 = $(MAIN).o image.o html.o ver.o textfile.o varstore.o msg.o gif.o jpeg.o png.o option.o suballoc.o## explicit dependency: final executable#$(MAIN) : $(OBJ1) $(OBJ2)	$(LINK) $(LOPT) -o $(MAIN) $(OBJ1) $(OBJ2)## implicit dependencies for source code#.c.o :	$(CC) $(CCOPT) $(DEFINES) -o $*.o $<

⌨️ 快捷键说明

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