diff options
author | nobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2005-07-25 12:31:21 +0000 |
---|---|---|
committer | nobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2005-07-25 12:31:21 +0000 |
commit | 983c7c74eef6ae0fb622be7c840b194cd768326d (patch) | |
tree | 607f035c4d9e672493fffba775010d24da735a65 /win32 | |
parent | 6112d65af292a3ba943af45515218dd3abbfef1f (diff) | |
download | ruby-983c7c74eef6ae0fb622be7c840b194cd768326d.tar.gz |
* {bcc32,win32,wince}/Makefile.sub: moved CPPFLAGS only for ruby
source to XCFLAGS.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/branches/ruby_1_8@8834 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'win32')
-rw-r--r-- | win32/Makefile.sub | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/win32/Makefile.sub b/win32/Makefile.sub index 16494794bf..7141575e9f 100644 --- a/win32/Makefile.sub +++ b/win32/Makefile.sub @@ -115,9 +115,6 @@ OUTFLAG = -Fe !if !defined(CFLAGS) CFLAGS = -MD $(DEBUGFLAGS) $(OPTFLAGS) $(PROCESSOR_FLAG) !endif -!if !defined(CPPFLAGS) -CPPFLAGS = -I. -I$(srcdir) -I$(srcdir)/missing -!endif !if !defined(LDFLAGS) LDFLAGS = -link -incremental:no -debug -opt:ref -opt:icf !endif @@ -137,7 +134,7 @@ ARFLAGS = -machine:$(MACHINE) -out: CC = $(CC) -nologo LD = $(CC) LDSHARED = $(LD) -LD -XCFLAGS = -DRUBY_EXPORT +XCFLAGS = -DRUBY_EXPORT -I. -I$(srcdir) -I$(srcdir)/missing DLDFLAGS = $(LDFLAGS) -dll SOLIBS = |