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

📄 makefile.src.mingw

📁 一个从网络上自动下载文件的自由工具
💻 MINGW
字号:
## Compiler, linker, and lib stuff## Makefile for use with MinGW GCC/Win32 executable.#### ----------------------------------------------------## USAGE:##   You can type either##       mingw32-make##   to build wget.exe without SSL support or##       mingw32-make SSL=1##   to build wget.exe with SSL support.#### ----------------------------------------------------## NOTE: If you plan to build WGET.EXE with SSL support,##       please check the value of OPENSSL_PATH in this file##	 and correct it if it is not the OpenSSL installed directory.CC=gccLDFLAGS= -sCFLAGS= -DWINDOWS -DHAVE_CONFIG_H -O3 -Wall -I.## variablesLIBS= -lwsock32OBJ_EXT=.oOBJS=cmpt${OBJ_EXT} convert${OBJ_EXT} connect${OBJ_EXT} ftp${OBJ_EXT} ftp-basic${OBJ_EXT} \     ftp-ls${OBJ_EXT} ftp-opie${OBJ_EXT} getopt${OBJ_EXT} host${OBJ_EXT} html-parse${OBJ_EXT} html-url${OBJ_EXT} \     http${OBJ_EXT} init${OBJ_EXT} log${OBJ_EXT} main${OBJ_EXT} gnu-md5${OBJ_EXT} netrc${OBJ_EXT} \     safe-ctype${OBJ_EXT} hash${OBJ_EXT} progress${OBJ_EXT} gen-md5${OBJ_EXT} cookies${OBJ_EXT} \     ptimer${OBJ_EXT} recur${OBJ_EXT} res${OBJ_EXT} retr${OBJ_EXT} url${OBJ_EXT} utils${OBJ_EXT} \     version${OBJ_EXT} xmalloc${OBJ_EXT} mswindows${OBJ_EXT} spider${OBJ_EXT}ifdef SSL    ## OPENSSL_PATH is the OpenSSL installed directory    OPENSSL_PATH = ../../openssl-0.9.7c    CFLAGS += -I${OPENSSL_PATH}/outinc -DHAVE_SSL    LIBS += -L${OPENSSL_PATH}/out -leay32 -lssl32    OBJS += openssl${OBJ_EXT} http-ntlm${OBJ_EXT}endifall: wget.exewget.exe: $(OBJS)	${CC} ${LDFLAGS} -o $@ ${OBJS} ${LIBS}$(OBJS): config-post.h config.h connect.h convert.h cookies.h ftp.h \	 gen-md5.h getopt.h gnu-md5.h hash.h host.h html-parse.h    \	 http-ntlm.h init.h log.h mswindows.h netrc.h options.h     \	 progress.h ptimer.h recur.h res.h retr.h safe-ctype.h      \	 spider.h ssl.h sysdep.h url.h utils.h wget.h xmalloc.ho = ${OBJ_EXT}

⌨️ 快捷键说明

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