📄 makefile.vc6
字号:
#////////////////////////////////////////////////////////////////////////////
# $Id: makefile.vc6,v 1.9 2001/09/27 21:55:40 rosimildo Exp $
#
# Copyright (c) 2001 Exor International Inc. All rights reserved.
#
# MODULE DESCRIPTION: Build the eSoap examples.
#
# Important macros:
#
# MODIFICATION/HISTORY:
#
# $Log: makefile.vc6,v $
# Revision 1.9 2001/09/27 21:55:40 rosimildo
# Changed version to 1.2
#
# Revision 1.8 2001/09/18 00:07:53 rosimildo
# Added two more examples: add_two and get_temp.
#
# Revision 1.7 2001/09/11 16:37:22 rosimildo
# added callback example
#
#
# Created 2001/09/10 Rosimildo da Silva, ConnectTel Inc.
# [rdasilva@connecttel.com]
#
#////////////////////////////////////////////////////////////////////////////
ARCHIVE_VERSION=1.2
all: release
clean:
cd echo
msdev echo_server.dsp /MAKE "echo_server - Win32 Release" /CLEAN
msdev echo_client.dsp /MAKE "echo_client - Win32 Release" /CLEAN
-del *.plg
-del *.ncb
-del *.opt
-rd Release /s/q
cd ..
cd array
msdev array_server.dsp /MAKE "array_server - Win32 Release" /CLEAN
msdev array_client.dsp /MAKE "array_client - Win32 Release" /CLEAN
-del *.plg
-del *.ncb
-del *.opt
-rd Release /s/q
cd ..
cd ctype
msdev ctype_server.dsp /MAKE "ctype_server - Win32 Release" /CLEAN
msdev ctype_client.dsp /MAKE "ctype_client - Win32 Release" /CLEAN
-del *.plg
-del *.ncb
-del *.opt
-rd Release /s/q
cd ..
cd binary
msdev binary_server.dsp /MAKE "binary_server - Win32 Release" /CLEAN
msdev binary_client.dsp /MAKE "binary_client - Win32 Release" /CLEAN
-del *.plg
-del *.ncb
-del *.opt
-rd Release /s/q
cd ..
cd tts
msdev tts_client.dsp /MAKE "tts_client - Win32 Release" /CLEAN
-del *.plg
-del *.ncb
-del *.opt
-rd Release /s/q
cd ..
cd callback
msdev server_callback.dsp /MAKE "server_callback - Win32 Release" /CLEAN
msdev client_callback.dsp /MAKE "client_callback - Win32 Release" /CLEAN
-del *.plg
-del *.ncb
-del *.opt
-rd Release /s/q
cd ..
cd add_two
msdev add_server.dsp /MAKE "add_server - Win32 Release" /CLEAN
msdev add_client.dsp /MAKE "add_client - Win32 Release" /CLEAN
-del *.plg
-del *.ncb
-del *.opt
-rd Release /s/q
cd ..
cd get_temp
msdev get_temp.dsp /MAKE "get_temp - Win32 Release" /CLEAN
-del *.plg
-del *.ncb
-del *.opt
-rd Release /s/q
cd ..
release:
cd echo
msdev echo_server.dsp /MAKE "echo_server - Win32 Release"
msdev echo_client.dsp /MAKE "echo_client - Win32 Release"
cd ..
cd array
msdev array_server.dsp /MAKE "array_server - Win32 Release"
msdev array_client.dsp /MAKE "array_client - Win32 Release"
cd ..
cd ctype
msdev ctype_server.dsp /MAKE "ctype_server - Win32 Release"
msdev ctype_client.dsp /MAKE "ctype_client - Win32 Release"
cd ..
cd binary
msdev binary_server.dsp /MAKE "binary_server - Win32 Release"
msdev binary_client.dsp /MAKE "binary_client - Win32 Release"
copy my_quaker.gif Release\my_quaker.gif
cd ..
cd tts
msdev tts_client.dsp /MAKE "tts_client - Win32 Release"
cd ..
cd callback
msdev server_callback.dsp /MAKE "server_callback - Win32 Release"
msdev client_callback.dsp /MAKE "client_callback - Win32 Release"
cd ..
cd add_two
msdev add_server.dsp /MAKE "add_server - Win32 Release"
msdev add_client.dsp /MAKE "add_client - Win32 Release"
cd ..
cd get_temp
msdev get_temp.dsp /MAKE "get_temp - Win32 Release"
cd ..
zip: clean
-rd esoap_examples /s/q
xcopy echo\*.* esoap_examples\echo\*.* /s/v/e
xcopy array\*.* esoap_examples\array\*.* /s/v/e
xcopy ctype\*.* esoap_examples\ctype\*.* /s/v/e
xcopy binary\*.* esoap_examples\binary\*.* /s/v/e
xcopy tts\*.* esoap_examples\tts\*.* /s/v/e
xcopy callback\*.* esoap_examples\callback\*.* /s/v/e
xcopy add_two\*.* esoap_examples\add_two\*.* /s/v/e
xcopy get_temp\*.* esoap_examples\get_temp\*.* /s/v/e
copy *.txt esoap_examples
copy *.vc6 esoap_examples
cd esoap_examples
-rd CVS /s/q
-rd echo\CVS /s/q
-rd echo\auto_gen\CVS /s/q
-rd array\CVS /s/q
-rd array\auto_gen\CVS /s/q
-rd ctype\CVS /s/q
-rd ctype\auto_gen\CVS /s/q
-rd binary\CVS /s/q
-rd binary\auto_gen\CVS /s/q
-rd tts\CVS /s/q
-rd tts\auto_gen\CVS /s/q
-rd callback\CVS /s/q
-rd callback\auto_gen\CVS /s/q
-rd add_two\CVS /s/q
-rd add_two\auto_gen\CVS /s/q
-rd get_temp\CVS /s/q
-rd get_temp\auto_gen\CVS /s/q
cd ..
zip -r esoap-examples-$(ARCHIVE_VERSION).zip esoap_examples
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -