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

📄 makefile.bc5

📁 ESOAP工具
💻 BC5
字号:
#////////////////////////////////////////////////////////////////////////////
# $Id: makefile.bc5,v 1.3 2001/09/11 12:33:30 rosimildo Exp $
#
# Copyright (c) 2001 Exor International Inc. All rights reserved.
#
# MODULE DESCRIPTION: Makefile to build the client samples of the
# embedded SOAP toolkit using the BC++ ( single library ).
#
# Important macros:
#
#    BCC_PATH:  Location of the Borland C++ compiler...
#
#    BCC_DEBUG: compile code with debug information.
#
# MODIFICATION/HISTORY:
#
# $Log: makefile.bc5,v $
# Revision 1.3  2001/09/11 12:33:30  rosimildo
# added doxygen doc to thread class.
#
# Revision 1.2  2001/09/11 11:45:52  rosimildo
# changed copyright from Technopoint to Exit; updated version to 0.9
#
# Revision 1.1  2001/06/19 18:50:01  rosimildo
# Added makefiles to build BCC as a single library
#
#
# Created 2001/06/19 Rosimildo da Silva, ConnectTel Inc.
# [rdasilva@connecttel.com]
#
#////////////////////////////////////////////////////////////////////////////

TOP=..\..

!include "$(TOP)\makefile_include.mak"

SRCDIR =.;$(TOP)/utils
INCDIR = .;$(TOP)/src;$(TOP)/abyss/src;$(TOP)/utils;$(TOP)\include
CFLAGS = $(CFLAGS) -DXML_NS
LFLAGS = $(LFLAGS) -ap

GET_TEMP_OBJS= $(OBJDIR)\get_temp.obj
GET_TEMP = get_temp.exe

ESOAP_CLIENT_OBJS= $(OBJDIR)\esoapclient.obj

ESOAP_CLIENT  = esoapclient.exe

GET_TYPES_OBJS = $(OBJDIR)\get_types.obj
GET_TYPES      = get_types.exe

INTEROP_OBJS = $(OBJDIR)\interop_test.obj
INTEROP      = interop_test.exe

EST_LIBS= $(LIBDIR)\esoapbc5.lib

LIBS= $(EST_LIBS) $(LIBS)

all: make_dirs $(GET_TEMP) $(ESOAP_CLIENT) $(GET_TYPES) $(INTEROP)
clean:
   -rd  $(OBJDIR) /s/q
   -del $(GET_TEMP)
   -del $(ESOAP_CLIENT)
   -del $(GET_TYPES)
   -del $(INTEROP)   
   -del *.il?
   -del *.map
   -del *.tds
   -del *.log

$(GET_TEMP): $(GET_TEMP_OBJS) $(EST_LIBS)
   $(LINK) $(LFLAGS) $(STARTUP) $(GET_TEMP_OBJS), $<,,$(LIBS),,;

$(ESOAP_CLIENT): $(ESOAP_CLIENT_OBJS) $(EST_LIBS)
   $(LINK) $(LFLAGS) $(STARTUP) $(ESOAP_CLIENT_OBJS), $<,,$(LIBS),,;

$(GET_TYPES): $(GET_TYPES_OBJS) $(EST_LIBS)
   $(LINK) $(LFLAGS) $(STARTUP) $(GET_TYPES_OBJS), $<,,$(LIBS),,;

$(INTEROP): $(INTEROP_OBJS) $(EST_LIBS)
   $(LINK) $(LFLAGS) $(STARTUP) $(INTEROP_OBJS), $<,,$(LIBS),,;

!include "$(TOP)\makefile_rules.mak"

⌨️ 快捷键说明

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