📄 makefile
字号:
## 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 + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -