Browse CVS Repository
Contents of /exerb/exerb/vc.mak
Parent Directory
| Revision Log
| Revision Graph
Revision 1.2 -
( show annotations)
( download)
Sun Dec 1 14:42:05 2002 UTC
(21 years, 4 months ago)
by yuya
Branch: MAIN
CVS Tags: HEAD
Changes since 1.1: +0 -0 lines
FILE REMOVED
* 一時的に削除
| 1 |
LIB_DIR=lib/exerb |
| 2 |
CORE_BASENAME=ruby167 |
| 3 |
GUI_NAME=$(CORE_BASENAME)g |
| 4 |
CUI_NAME=$(CORE_BASENAME)c |
| 5 |
GUI_CORE=$(LIB_DIR)/$(GUI_NAME).rbx |
| 6 |
CUI_CORE=$(LIB_DIR)/$(CUI_NAME).rbx |
| 7 |
PROJECT_DIR=project |
| 8 |
GUI_PROJECT=$(PROJECT_DIR)/$(GUI_NAME)/$(GUI_NAME).dsp |
| 9 |
CUI_PROJECT=$(PROJECT_DIR)/$(CUI_NAME)/$(CUI_NAME).dsp |
| 10 |
|
| 11 |
all: $(GUI_CORE) $(CUI_CORE) |
| 12 |
|
| 13 |
$(GUI_CORE): $(GUI_PROJECT) |
| 14 |
msdev $(GUI_PROJECT) /MAKE "$(GUI_NAME) - Win32 Release" |
| 15 |
ruby -r 'ftools' \ |
| 16 |
-e "File.cp('project/$(GUI_NAME)/release/$(GUI_NAME).exe', '$@')" |
| 17 |
|
| 18 |
$(CUI_CORE): $(CUI_PROJECT) |
| 19 |
msdev $(CUI_PROJECT) /MAKE "$(CUI_NAME) - Win32 Release" |
| 20 |
ruby -r 'ftools' \ |
| 21 |
-e "File.cp('project/$(CUI_NAME)/release/$(CUI_NAME).exe', '$@')" |
| 22 |
|
|