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

📄 makefile

📁 http ping linux下的一个检查url的工具
💻
字号:
# Makefile for http_ping# CONFIGURE: If you are using a SystemV-based operating system, such as# Solaris, you will need to uncomment this definition.#SYSV_LIBS =	-lnsl -lsocket# CONFIGURE: If you want to compile in support for https, uncomment these# definitions.  You will need to have already built OpenSSL, available at# http://www.openssl.org/  Make sure the SSL_TREE definition points to the# tree with your OpenSSL installation - depending on how you installed it,# it may be in /usr/local instead of /usr/local/ssl.#SSL_TREE =	/usr/local/ssl#SSL_DEFS =	-DUSE_SSL#SSL_INC =	-I$(SSL_TREE)/include#SSL_LIBS =	-L$(SSL_TREE)/lib -lssl -lcryptoBINDIR =	/usr/local/binMANDIR =	/usr/local/man/man1CC =		gcc -WallCFLAGS =	-O $(SRANDOM_DEFS) $(SSL_DEFS) $(SSL_INC)#CFLAGS =	-g $(SRANDOM_DEFS) $(SSL_DEFS) $(SSL_INC)LDFLAGS =	-s $(SSL_LIBS) $(SYSV_LIBS)#LDFLAGS =	-g $(SSL_LIBS) $(SYSV_LIBS)all:		http_pinghttp_ping:	http_ping.o	$(CC) $(CFLAGS) http_ping.o $(LDFLAGS) -o http_pinghttp_ping.o:	http_ping.c port.h	$(CC) $(CFLAGS) -c http_ping.cinstall:	all	rm -f $(BINDIR)/http_ping	cp http_ping $(BINDIR)	rm -f $(MANDIR)/http_ping.1	cp http_ping.1 $(MANDIR)clean:	rm -f http_ping *.o core core.* *.core

⌨️ 快捷键说明

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