aboutsummaryrefslogtreecommitdiff
path: root/ares/Makefile.vc6
diff options
context:
space:
mode:
authorYang Tse <yangsita@gmail.com>2009-11-09 13:24:11 +0000
committerYang Tse <yangsita@gmail.com>2009-11-09 13:24:11 +0000
commit46f294dbb02b0973abf29bd65b3410acaaa52a79 (patch)
treea8574ab520b3ac841b108b2d99a02bbb31802d0f /ares/Makefile.vc6
parentd7231f54d77096cb3d8483e9bd8b834afbf1d520 (diff)
Updated MSVC makefile that allows building dynamic and static
c-ares libraries in debug and release flavours. Additionally each of the three sample programs is built against each of the four possible c-ares libraries, generating all this a total number of 12 executables and 4 libraries.
Diffstat (limited to 'ares/Makefile.vc6')
-rw-r--r--ares/Makefile.vc6275
1 files changed, 0 insertions, 275 deletions
diff --git a/ares/Makefile.vc6 b/ares/Makefile.vc6
deleted file mode 100644
index 4d68f3718..000000000
--- a/ares/Makefile.vc6
+++ /dev/null
@@ -1,275 +0,0 @@
-# $Id$
-#
-# C-ares makefile for MSVC6+
-# G. Vanem <gvanem@broadpark.no>.
-#
-
-CFG_MODEL = MD
-DEBUG_MODEL = d
-USE_WATT32 = 0
-
-#
-# Configurations:
-# -MD - msvcrt.dll, threads, release (normal)
-# -MDd - msvcrtd.dll, threads, debug
-# -ML - libc, no threads, release (not available on VC-2008+)
-# -MLd - libc, no threads, debug (not available on VC-2008+)
-# -MT - libc, threads, release
-# -MTd - libc, threads, debug
-
-CC = cl
-
-CFLAGS = -nologo -$(CFG_MODEL)$(DEBUG_MODEL) -W3 -Yd -Zi
-LDFLAGS = -machine:i386 -map
-
-OBJ_DIR = VC6_obj
-DEF_FILE = cares.def
-
-!if "$(USE_WATT32)" == "1"
-CFLAGS = $(CFLAGS) -UWIN32 -DWATT32 -I$(WATT_ROOT)\inc
-EX_LIBS = $(WATT_ROOT)\lib\wattcpvc_imp.lib
-
-!else
-CFLAGS = $(CFLAGS) -DWIN32 -DWIN32_LEAN_AND_MEAN
-EX_LIBS = advapi32.lib ws2_32.lib
-!endif
-
-!if "$(DEBUG_MODEL)" == "d"
-CFLAGS = $(CFLAGS) -DDEBUGBUILD -D_DEBUG -GZ
-LDFLAGS = $(LDFLAGS) -debug -fixed:no
-
-!else
-CFLAGS = $(CFLAGS) -O2 -Og
-LDFLAGS = $(LDFLAGS) -release
-!endif
-
-CFLAGS = $(CFLAGS) -I.\.
-
-OBJECTS = $(OBJ_DIR)\ares_fds.obj \
- $(OBJ_DIR)\ares_process.obj \
- $(OBJ_DIR)\ares_free_hostent.obj \
- $(OBJ_DIR)\ares_query.obj \
- $(OBJ_DIR)\ares__close_sockets.obj \
- $(OBJ_DIR)\ares_free_string.obj \
- $(OBJ_DIR)\ares_search.obj \
- $(OBJ_DIR)\ares__get_hostent.obj \
- $(OBJ_DIR)\ares_gethostbyaddr.obj \
- $(OBJ_DIR)\ares_getsock.obj \
- $(OBJ_DIR)\ares_send.obj \
- $(OBJ_DIR)\ares__read_line.obj \
- $(OBJ_DIR)\ares_gethostbyname.obj \
- $(OBJ_DIR)\ares_getnameinfo.obj \
- $(OBJ_DIR)\ares_strcasecmp.obj \
- $(OBJ_DIR)\ares_strerror.obj \
- $(OBJ_DIR)\ares_cancel.obj \
- $(OBJ_DIR)\ares_init.obj \
- $(OBJ_DIR)\ares_library_init.obj \
- $(OBJ_DIR)\ares_llist.obj \
- $(OBJ_DIR)\ares_timeout.obj \
- $(OBJ_DIR)\ares__timeval.obj \
- $(OBJ_DIR)\ares_destroy.obj \
- $(OBJ_DIR)\ares_mkquery.obj \
- $(OBJ_DIR)\ares_version.obj \
- $(OBJ_DIR)\ares_expand_name.obj \
- $(OBJ_DIR)\ares_parse_a_reply.obj \
- $(OBJ_DIR)\ares_parse_aaaa_reply.obj \
- $(OBJ_DIR)\ares_parse_ns_reply.obj \
- $(OBJ_DIR)\ares_parse_srv_reply.obj \
- $(OBJ_DIR)\windows_port.obj \
- $(OBJ_DIR)\ares_expand_string.obj \
- $(OBJ_DIR)\ares_parse_ptr_reply.obj \
- $(OBJ_DIR)\ares_writev.obj \
- $(OBJ_DIR)\bitncmp.obj \
- $(OBJ_DIR)\inet_net_pton.obj \
- $(OBJ_DIR)\inet_ntop.obj
-
-all: $(OBJ_DIR) cares.lib cares.dll cares_imp.lib ahost.exe adig.exe acountry.exe
- @echo Welcome to c-ares library and examples
-
-$(OBJ_DIR):
- mkdir $(OBJ_DIR)
-
-cares.lib: $(OBJ_DIR) $(OBJECTS)
- lib -nologo -out:$@ $(OBJECTS)
-
-cares_imp.lib cares.dll: $(OBJ_DIR) $(DEF_FILE) $(OBJECTS)
- link $(LDFLAGS) -dll -implib:cares_imp.lib -out:cares.dll \
- -def:$(DEF_FILE) $(OBJECTS) $(EX_LIBS)
-
-$(DEF_FILE): $(OBJECTS) Makefile.VC6
- @echo ; Generated. DO NOT EDIT > $@
- @echo LIBRARY cares.dll >> $@
- @echo EXPORTS >> $@
- @echo ares_cancel >> $@
- @echo ares_destroy >> $@
- @echo ares_expand_name >> $@
- @echo ares_expand_string >> $@
- @echo ares_fds >> $@
- @echo ares_free_hostent >> $@
- @echo ares_free_string >> $@
- @echo ares_gethostbyaddr >> $@
- @echo ares_gethostbyname >> $@
- @echo ares_getsock >> $@
- @echo ares_init >> $@
- @echo ares_init_options >> $@
- @echo ares_library_init >> $@
- @echo ares_library_cleanup >> $@
- @echo ares_mkquery >> $@
- @echo ares_parse_a_reply >> $@
- @echo ares_parse_ptr_reply >> $@
- @echo ares_parse_ns_reply >> $@
- @echo ares_process >> $@
- @echo ares_process_fd >> $@
- @echo ares_query >> $@
- @echo ares_search >> $@
- @echo ares_strerror >> $@
- @echo ares_strncasecmp >> $@
- @echo ares_strcasecmp >> $@
- @echo ares_timeout >> $@
- @echo ares_version >> $@
- @echo ares_inet_net_pton >> $@
- @echo ares_inet_ntop >> $@
- @echo ares_inet_pton >> $@
- @echo ares_getnameinfo >> $@
- @echo ares_parse_aaaa_reply >> $@
-!if "$(USE_WATT32)" == "0"
- @echo ares_writev >> $@
-!endif
-
-ahost.exe: $(OBJ_DIR) $(OBJ_DIR)\ahost.obj $(OBJ_DIR)\ares_getopt.obj cares_imp.lib
- link $(LDFLAGS) -out:$@ $(OBJ_DIR)\ahost.obj $(OBJ_DIR)\ares_getopt.obj cares_imp.lib $(EX_LIBS)
-
-adig.exe: $(OBJ_DIR) $(OBJ_DIR)\adig.obj $(OBJ_DIR)\ares_getopt.obj cares_imp.lib
- link $(LDFLAGS) -out:$@ $(OBJ_DIR)\adig.obj $(OBJ_DIR)\ares_getopt.obj cares_imp.lib $(EX_LIBS)
-
-acountry.exe: $(OBJ_DIR) $(OBJ_DIR)\acountry.obj $(OBJ_DIR)\ares_getopt.obj cares_imp.lib
- link $(LDFLAGS) -out:$@ $(OBJ_DIR)\acountry.obj $(OBJ_DIR)\ares_getopt.obj cares_imp.lib $(EX_LIBS)
-
-clean:
- - del $(OBJ_DIR)\*.obj *.ilk *.pdb *.pbt *.pbi *.pbo *._xe *.map
-
-vclean realclean: clean
- - del $(DEF_FILE) cares.lib cares_imp.* cares.dll
- - del ahost.exe adig.exe acountry.exe
- - rd $(OBJ_DIR)
-
-.c{$(OBJ_DIR)}.obj:
- $(CC) $(CFLAGS) -Fo$*.obj -c $<
-
-#
-# Copyright "gcc -MM .."
-#
-$(OBJ_DIR)\ares_fds.obj: ares_fds.c ares_setup.h setup_once.h ares.h ares_private.h \
- ares_ipv6.h ares_build.h ares_rules.h
-
-$(OBJ_DIR)\ares_process.obj: ares_process.c ares_setup.h setup_once.h nameser.h \
- ares.h ares_dns.h ares_private.h ares_ipv6.h ares_build.h ares_rules.h
-
-$(OBJ_DIR)\ares_free_hostent.obj: ares_free_hostent.c ares_setup.h setup_once.h \
- ares.h ares_private.h ares_ipv6.h ares_build.h ares_rules.h
-
-$(OBJ_DIR)\ares_query.obj: ares_query.c ares_setup.h setup_once.h nameser.h \
- ares.h ares_dns.h ares_private.h ares_ipv6.h ares_build.h ares_rules.h
-
-$(OBJ_DIR)\ares__close_sockets.obj: ares__close_sockets.c ares_setup.h setup_once.h \
- ares.h ares_private.h ares_ipv6.h ares_build.h ares_rules.h
-
-$(OBJ_DIR)\ares_free_string.obj: ares_free_string.c ares_setup.h setup_once.h \
- ares.h ares_build.h ares_rules.h
-
-$(OBJ_DIR)\ares_search.obj: ares_search.c ares_setup.h setup_once.h nameser.h \
- ares.h ares_private.h ares_ipv6.h ares_build.h ares_rules.h
-
-$(OBJ_DIR)\ares__get_hostent.obj: ares__get_hostent.c ares_setup.h setup_once.h \
- ares.h ares_private.h ares_ipv6.h inet_net_pton.h ares_build.h ares_rules.h
-
-$(OBJ_DIR)\ares_gethostbyaddr.obj: ares_gethostbyaddr.c ares_setup.h setup_once.h \
- nameser.h ares.h ares_private.h ares_ipv6.h inet_net_pton.h ares_build.h \
- ares_rules.h
-
-$(OBJ_DIR)\ares_send.obj: ares_send.c ares_setup.h setup_once.h nameser.h ares.h \
- ares_dns.h ares_private.h ares_ipv6.h ares_build.h ares_rules.h
-
-$(OBJ_DIR)\ares__read_line.obj: ares__read_line.c ares_setup.h setup_once.h ares.h \
- ares_private.h ares_ipv6.h ares_build.h ares_rules.h
-
-$(OBJ_DIR)\ares_gethostbyname.obj: ares_gethostbyname.c ares_setup.h setup_once.h \
- nameser.h ares.h ares_private.h ares_ipv6.h inet_net_pton.h bitncmp.h \
- ares_build.h ares_rules.h
-
-$(OBJ_DIR)\ares_strcasecmp.obj: ares_strcasecmp.c ares_setup.h setup_once.h ares.h \
- ares_build.h ares_rules.h
-
-$(OBJ_DIR)\ares_strerror.obj: ares_strerror.c ares_setup.h setup_once.h ares.h \
- ares_build.h ares_rules.h
-
-$(OBJ_DIR)\ares_cancel.obj: ares_cancel.c ares_setup.h setup_once.h ares.h \
- ares_private.h ares_ipv6.h ares_build.h ares_rules.h
-
-$(OBJ_DIR)\ares_init.obj: ares_init.c ares_setup.h setup_once.h nameser.h ares.h \
- ares_private.h ares_ipv6.h inet_net_pton.h ares_build.h ares_rules.h \
- ares_library_init.h
-
-$(OBJ_DIR)\ares_timeout.obj: ares_timeout.c ares_setup.h setup_once.h ares.h \
- ares_private.h ares_ipv6.h ares_build.h ares_rules.h
-
-$(OBJ_DIR)\ares__timeval.obj: ares__timeval.c ares_setup.h setup_once.h ares.h \
- ares_private.h ares_ipv6.h ares_build.h ares_rules.h
-
-$(OBJ_DIR)\ares_destroy.obj: ares_destroy.c ares_setup.h setup_once.h ares.h \
- ares_private.h ares_ipv6.h ares_build.h ares_rules.h
-
-$(OBJ_DIR)\ares_mkquery.obj: ares_mkquery.c ares_setup.h setup_once.h nameser.h \
- ares.h ares_dns.h ares_build.h ares_rules.h
-
-$(OBJ_DIR)\ares_version.obj: ares_version.c ares_setup.h setup_once.h ares.h \
- ares_version.h ares_build.h ares_rules.h
-
-$(OBJ_DIR)\ares_expand_name.obj: ares_expand_name.c ares_setup.h setup_once.h \
- nameser.h ares.h ares_private.h ares_ipv6.h ares_build.h ares_rules.h
-
-$(OBJ_DIR)\ares_parse_a_reply.obj: ares_parse_a_reply.c ares_setup.h setup_once.h \
- nameser.h ares.h ares_dns.h ares_private.h ares_ipv6.h ares_build.h \
- ares_rules.h
-
-$(OBJ_DIR)\windows_port.obj: windows_port.c ares_setup.h setup_once.h nameser.h \
- ares.h ares_private.h ares_ipv6.h ares_build.h ares_rules.h
-
-$(OBJ_DIR)\ares_expand_string.obj: ares_expand_string.c ares_setup.h setup_once.h \
- nameser.h ares.h ares_private.h ares_ipv6.h ares_build.h ares_rules.h
-
-$(OBJ_DIR)\ares_parse_ptr_reply.obj: ares_parse_ptr_reply.c ares_setup.h \
- setup_once.h nameser.h ares.h ares_dns.h ares_private.h ares_ipv6.h \
- ares_build.h ares_rules.h
-
-$(OBJ_DIR)\ares_parse_aaaa_reply.obj: ares_parse_aaaa_reply.c ares_setup.h \
- setup_once.h nameser.h ares.h ares_dns.h inet_net_pton.h ares_private.h \
- ares_ipv6.h ares_build.h ares_rules.h
-
-$(OBJ_DIR)\ares_parse_ns_reply.obj: ares_parse_ns_reply.c ares_setup.h \
- setup_once.h nameser.h ares.h ares_dns.h ares_private.h ares_ipv6.h \
- ares_build.h ares_rules.h
-
-$(OBJ_DIR)\ares_getnameinfo.obj: ares_getnameinfo.c ares_setup.h setup_once.h \
- nameser.h ares.h ares_private.h ares_ipv6.h inet_ntop.h ares_build.h \
- ares_rules.h
-
-$(OBJ_DIR)\inet_net_pton.obj: inet_net_pton.c ares_setup.h setup_once.h nameser.h \
- ares_ipv6.h inet_net_pton.h ares_build.h ares_rules.h
-
-$(OBJ_DIR)\bitncmp.obj: bitncmp.c bitncmp.h ares_build.h ares_rules.h
-
-$(OBJ_DIR)\inet_ntop.obj: inet_ntop.c ares_setup.h setup_once.h nameser.h \
- ares_ipv6.h inet_ntop.h ares_build.h ares_rules.h
-
-$(OBJ_DIR)\ares_getopt.obj: ares_getopt.c ares_getopt.h ares_build.h \
- ares_rules.h
-
-$(OBJ_DIR)\ares_library_init.obj: ares_library_init.c ares_setup.h setup_once.h \
- ares.h ares_private.h ares_library_init.h ares_build.h ares_rules.h
-
-$(OBJ_DIR)\ares_llist.obj: ares_llist.c ares_setup.h setup_once.h ares.h \
- ares_private.h ares_llist.h ares_build.h ares_rules.h
-
-$(OBJ_DIR)\ares_writev.obj: ares_writev.c ares_setup.h setup_once.h ares.h \
- ares_writev.h ares_build.h ares_rules.h