📄 common.dj
字号:
## Common defines for curl (djgpp/Watt-32)## Assumes you've unpacked cURL with short-file names# I.e use "set LFN=n" before untaring on Win9x/XP.# Requires sed, yacc, rm and the usual stuff.## Define TOPDIR before including this file..SUFFIXES: .exe .yMAKEFILE = Makefile.djOBJ_DIR = djgpp## OpenSSL is available from www.openssl.org and builds okay# with djgpp/Watt-32. Set to 0 if you don't need https URLs# (reduces curl.exe with approx 700 kB)#USE_SSL = 0## Use zlib for contents encoding#USE_ZLIB = 0## Use libidn for international domain names#USE_IDNA = 0## Use Watt-32 IPv6 stack (only IPv6 name resolution working at the moment)#USE_IPV6 = 0## Use C-Ares resolver library# This conflicts with USE_IPV6=1#USE_ARES = 0## Enable debug code in libcurl/curl#USE_DEBUG = 0default: all## Root directory for Waterloo tcp/ip etc. Change to suite.# WATT_ROOT should be set during Watt-32 install.#WATT32_ROOT = $(subst \,/,$(WATT_ROOT))OPENSSL_ROOT = e:/net/openssl.099ZLIB_ROOT = $(DJDIR)/contrib/zlibLIBIDN_ROOT = $(TOPDIR)/../IDN/libidnARES_ROOT = $(TOPDIR)/aresCC = gccYACC = bison -yCFLAGS = -g -gcoff -O2 -I. -I$(TOPDIR)/include -I$(TOPDIR)/lib \ -I$(WATT32_ROOT)/inc -Wall -DHAVE_CONFIG_Hifeq ($(USE_SSL),1) CFLAGS += -DUSE_SSLEAY -DUSE_OPENSSL -I$(OPENSSL_ROOT)endififeq ($(USE_ZLIB),1) CFLAGS += -DUSE_ZLIB -I$(ZLIB_ROOT)endififeq ($(USE_IPV6),1) CFLAGS += -DENABLE_IPV6endififeq ($(USE_ARES),1) CFLAGS += -DUSE_ARES -I$(ARES_ROOT)endififeq ($(USE_IDNA),1) CFLAGS += -DHAVE_LIBIDN -DHAVE_IDN_FREE_H -DHAVE_IDN_FREE -DHAVE_TLD_H \ -DHAVE_TLD_STRERROR -I$(LIBIDN_ROOT)/libendififeq ($(USE_DEBUG),1) CFLAGS += -DDEBUG=1 -DCURLDEBUG # -DDPRINTF_DEBUG2=1endif$(OBJ_DIR): mkdir $(OBJ_DIR)$(OBJ_DIR)/%.o: %.c $(CC) $(CFLAGS) -o $@ -c $< @echodepend: $(DEPEND_PREREQ) $(MAKEFILE) $(CC) -MM $(CFLAGS) $(CSOURCES) | \ sed -e 's/^\([a-zA-Z0-9_-]*\.o:\)/$$(OBJ_DIR)\/\1/' > depend.dj
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -