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

📄 makefile.ecos

📁 ESOAP一款专注于嵌入式的WEB SERVICE开发的软件。
💻 ECOS
字号:
#////////////////////////////////////////////////////////////////////////////
# $Id: makefile.ecos,v 1.2 2001/09/11 11:45:53 rosimildo Exp $
#
# Copyright (c) 2001 Exor International Inc. All rights reserved.
#
# MODULE DESCRIPTION:
# This makefile to build the eCos server for the Embedded SOAP toolkit. 
#
# MODIFICATION/HISTORY:
#
# $Log: makefile.ecos,v $
# Revision 1.2  2001/09/11 11:45:53  rosimildo
# changed copyright from Technopoint to Exit; updated version to 0.9
#
# Revision 1.1  2001/07/25 17:58:05  rosimildo
# Added the eCos makefiles + some changes to compiler with the
# x86 PC toolset.
#
#
# Created 2001/07/26 Rosimildo da Silva, ConnectTel Inc.
# [rdasilva@connecttel.com]
#
#////////////////////////////////////////////////////////////////////////////
TOP             := ../..
include $(TOP)/makefile_include.ecos

EEXT=.exe

ESOAPSERVER_OBJS = esoapserver.o validator1.o common_table.o \
                   add_integers.o interop.o

LIBS  += -lesoap

ESOAPSERVER_EXE = esoapserver$(EEXT)

DEPEND_LIBS = $(TOP)/lib/libesoap.a 

all: $(ESOAPSERVER_EXE)

clean:
	rm -f $(ESOAPSERVER_EXE) $(ESOAPSERVER_OBJS) .depend 

$(ESOAPSERVER_EXE): $(ESOAPSERVER_OBJS) $(DEPEND_LIBS)
	$(CXX) $(LDFLAGS) -o $(ESOAPSERVER_EXE) $(ESOAPSERVER_OBJS) $(LIBS)

include $(TOP)/makefile_rules.ecos

⌨️ 快捷键说明

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