makefile
来自「如果是通过公司内部的HTTP PROXY上网而又被限制访问很多站点的话」· 代码 · 共 47 行
TXT
47 行
## Makefile.in: makefile for desproxy src/ directory# # Copyright (C) 2003 Miguelanxo Otero Salgueiro# # This program is free software; you can redistribute it and/or modify# it under the tems of the GNU General Public License version 2 as# published by the Free Software Foundation.# # prefix = /usr/localbindir = /usr/local/binlocaledir = /usr/local/share/localeSHELL = /bin/shINSTALL_PROGRAM = ${INSTALL}CC = gccCFLAGS = -g -O2 -Wall -D DEBUGDEFS = -DHAVE_CONFIG_H -DLOCALEDIR=\"$(localedir)\"LIBS = -llibintlobjects = util.o mdesproxy.o bins = desproxy all: $(bins)desproxy: mdesproxy.o util.o $(CC) $(CFLAGS) $(LIBS) util.o mdesproxy.o -o desproxymdesproxy.o: mdesproxy.c mdesproxy.h $(CC) $(CFLAGS) $(DEFS) -c mdesproxy.c util.o: util.c mdesproxy.h $(CC) $(CFLAGS) $(DEFS) -c util.cclean: rm -rf $(objects) $(bins) install: installdist-clean: rm -rf $(objects) $(bins) Makefile
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?