summaryrefslogtreecommitdiff
path: root/common.mk
diff options
context:
space:
mode:
authorksaito <ksaito@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2004-04-12 17:57:40 +0000
committerksaito <ksaito@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2004-04-12 17:57:40 +0000
commit64cdea9fae741b1b94ceaf9e6bc9c81621f4ffd3 (patch)
treecff871e840c7cf8b6a15767ca16863425839381f /common.mk
parent15d2b80c8a8495c996561e9fd68cae5dfdddde16 (diff)
* common.mk: changed the order of ascii.c alphabetically.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@6148 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'common.mk')
-rw-r--r--common.mk8
1 files changed, 4 insertions, 4 deletions
diff --git a/common.mk b/common.mk
index 6f138dd295..c60371e319 100644
--- a/common.mk
+++ b/common.mk
@@ -7,8 +7,8 @@ RBCONFIG = ./.rbconfig.time
DMYEXT = dmyext.$(OBJEXT)
MAINOBJ = main.$(OBJEXT)
-OBJS = ascii.$(OBJEXT) \
- array.$(OBJEXT) \
+OBJS = array.$(OBJEXT) \
+ ascii.$(OBJEXT) \
bignum.$(OBJEXT) \
class.$(OBJEXT) \
compar.$(OBJEXT) \
@@ -173,11 +173,11 @@ win32.$(OBJEXT): {$(VPATH)}win32.c
###
-ascii.$(OBJEXT): {$(VPATH)}ascii.c {$(VPATH)}regenc.h \
- {$(VPATH)}oniguruma.h config.h
array.$(OBJEXT): {$(VPATH)}array.c {$(VPATH)}ruby.h config.h \
{$(VPATH)}defines.h {$(VPATH)}intern.h {$(VPATH)}missing.h \
{$(VPATH)}util.h {$(VPATH)}st.h
+ascii.$(OBJEXT): {$(VPATH)}ascii.c {$(VPATH)}regenc.h \
+ {$(VPATH)}oniguruma.h config.h
bignum.$(OBJEXT): {$(VPATH)}bignum.c {$(VPATH)}ruby.h config.h \
{$(VPATH)}defines.h {$(VPATH)}intern.h {$(VPATH)}missing.h
class.$(OBJEXT): {$(VPATH)}class.c {$(VPATH)}ruby.h config.h \