Browse CVS Repository
Contents of /exerb/exerb/example/Makefile
Parent Directory
| Revision Log
| Revision Graph
Revision 1.5 -
( show annotations)
( download)
Thu Jul 6 01:35:22 2006 UTC
(17 years, 9 months ago)
by yuya
Branch: MAIN
CVS Tags: release510, release430, release410, release490, release440, release400, release461, release460, release540, release420, release500, release520, release480, ChangeLog, release450, release530, release470, HEAD
Changes since 1.4: +5 -5 lines
* visualurubyをvrubyに名称変更
| 1 |
|
| 2 |
#==============================================================================# |
| 3 |
# $Id: Makefile,v 1.4 2005/04/25 16:27:42 yuya Exp $ |
| 4 |
#==============================================================================# |
| 5 |
|
| 6 |
all: cat_n exception msgbox vruby runtime |
| 7 |
|
| 8 |
#==============================================================================# |
| 9 |
|
| 10 |
EXERB = exerb -v |
| 11 |
REMOVE = rm |
| 12 |
|
| 13 |
#==============================================================================# |
| 14 |
|
| 15 |
cat_n: cat_n.rb cat_n.exy Makefile |
| 16 |
$(EXERB) cat_n.exy |
| 17 |
|
| 18 |
exception: exception.rb exception.exy Makefile |
| 19 |
$(EXERB) exception.exy |
| 20 |
|
| 21 |
msgbox: msgbox.rb msgbox.exy Makefile |
| 22 |
$(EXERB) msgbox.exy |
| 23 |
|
| 24 |
vruby: vruby.rb vruby.exy Makefile |
| 25 |
$(EXERB) vruby.exy |
| 26 |
|
| 27 |
runtime: runtime.rb runtime.exy Makefile |
| 28 |
$(EXERB) runtime.exy |
| 29 |
|
| 30 |
#==============================================================================# |
| 31 |
|
| 32 |
clean: |
| 33 |
-$(REMOVE) cat_n.exe |
| 34 |
-$(REMOVE) exception.exe |
| 35 |
-$(REMOVE) msgbox.exe |
| 36 |
-$(REMOVE) vruby.exe |
| 37 |
-$(REMOVE) runtime.exe |
| 38 |
|
| 39 |
#==============================================================================# |
| 40 |
#==============================================================================# |
| |