makefile

来自「使用纯C编写的http post请求」· 代码 · 共 39 行

TXT
39
字号
# Makefile for http_post# 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 =		gccCFLAGS =	-Wall -O $(SSL_DEFS) $(SSL_INC)#CFLAGS =	-Wall -g $(SSL_DEFS) $(SSL_INC)LDFLAGS =	-s $(SSL_LIBS) $(SYSV_LIBS)#LDFLAGS =	-g $(SSL_LIBS) $(SYSV_LIBS)all:		http_posthttp_post:	http_post.c	$(CC) $(CFLAGS) http_post.c $(LDFLAGS) -o http_postinstall:	all	rm -f $(BINDIR)/http_post	cp http_post $(BINDIR)	rm -f $(MANDIR)/http_post.1	cp http_post.1 $(MANDIR)clean:	rm -f http_post *.o core core.* *.core

⌨️ 快捷键说明

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