From 4259d2df7dd95637a4b1e3fb174fe5e5aef81069 Mon Sep 17 00:00:00 2001 From: Daniel Stenberg Date: Wed, 24 Mar 2010 10:34:30 +0100 Subject: remove the ares subtree c-ares is now hosted entirely separate from the curl project see http://c-ares.haxx.se/ for all details concerning c-ares, its source repository and more. --- ares/Makefile.dj | 86 -------------------------------------------------------- 1 file changed, 86 deletions(-) delete mode 100644 ares/Makefile.dj (limited to 'ares/Makefile.dj') diff --git a/ares/Makefile.dj b/ares/Makefile.dj deleted file mode 100644 index f6b9d8f32..000000000 --- a/ares/Makefile.dj +++ /dev/null @@ -1,86 +0,0 @@ -# -# c-ares Makefile for djgpp/gcc/Watt-32. -# By Gisle Vanem 2004. -# -# $Id$ - - -TOPDIR = .. - -DEPEND_PREREQ = ares_config.h - -include ../packages/DOS/common.dj -include Makefile.inc - -CFLAGS += -DWATT32 -Dselect=select_s - -LDFLAGS = -s - -ifeq ($(USE_CURLDEBUG),1) - EX_LIBS = ../lib/libcurl.a - OBJ_HACK = $(OBJECTS) -else - OBJ_HACK = libcares.a -endif - -ifeq ($(USE_SSL),1) - EX_LIBS += $(OPENSSL_ROOT)/lib/libssl.a $(OPENSSL_ROOT)/lib/libcrypt.a -endif - -ifeq ($(USE_ZLIB),1) - EX_LIBS += $(ZLIB_ROOT)/libz.a -endif - -ifeq ($(USE_IDNA),1) - EX_LIBS += $(LIBIDN_ROOT)/lib/dj_obj/libidn.a -liconv -endif - -EX_LIBS += $(WATT32_ROOT)/lib/libwatt.a - -OBJECTS = $(addprefix $(OBJ_DIR)/, $(CSOURCES:.c=.o)) - -all: $(OBJ_DIR) ares_config.h libcares.a ahost.exe adig.exe acountry.exe - @echo Welcome to c-ares. - -libcares.a: $(OBJECTS) - ar rs $@ $? - -ares_config.h: config.dos - $(COPY) $^ $@ - -ahost.exe: ahost.c $(OBJ_DIR)/ares_getopt.o $(OBJ_HACK) - $(CC) $(LDFLAGS) $(CFLAGS) -o $@ $^ $(EX_LIBS) - -adig.exe: adig.c $(OBJ_DIR)/ares_getopt.o $(OBJ_HACK) - $(CC) $(LDFLAGS) $(CFLAGS) -o $@ $^ $(EX_LIBS) - -acountry.exe: acountry.c $(OBJ_DIR)/ares_getopt.o $(OBJ_HACK) - $(CC) $(LDFLAGS) $(CFLAGS) -o $@ $^ $(EX_LIBS) - -# clean generated files -# -genclean: - - $(DELETE) ares_config.h - -# clean object files and subdir -# -objclean: genclean - - $(DELETE) $(OBJ_DIR)$(DS)*.o - - $(RMDIR) $(OBJ_DIR) - -# clean without removing built library and programs -# -clean: objclean - - $(DELETE) depend.dj - -# clean everything -# -realclean vclean: clean - - $(DELETE) libcares.a - - $(DELETE) acountry.exe - - $(DELETE) adig.exe - - $(DELETE) ahost.exe - - $(DELETE) libcares.a - --include depend.dj - -- cgit v1.2.3