diff options
author | nobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2004-04-07 01:43:27 +0000 |
---|---|---|
committer | nobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2004-04-07 01:43:27 +0000 |
commit | 43db576e61cc70fc7d8280183b71985e5ab18651 (patch) | |
tree | 225b6819959134ec7c2f91ad5969f788886ae8fb /bcc32 | |
parent | 3d359cecd815f6d6cd9eeb55e14f38de75ab03ee (diff) | |
download | bundler-43db576e61cc70fc7d8280183b71985e5ab18651.tar.gz |
* Makefile.in, common.mk, */Makefile.sub (ext/extinit.o): OUTFLAG
doesn't work for object files on VC.
* */Makefile.sub (config.h): need SIZEOF_TIME_T now.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@6113 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'bcc32')
-rw-r--r-- | bcc32/Makefile.sub | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/bcc32/Makefile.sub b/bcc32/Makefile.sub index 7f8ac6059f..ca31fb5d66 100644 --- a/bcc32/Makefile.sub +++ b/bcc32/Makefile.sub @@ -215,6 +215,7 @@ config.h: \#define SIZEOF_VOIDP 4 \#define SIZEOF_FLOAT 4 \#define SIZEOF_DOUBLE 8 +\#define SIZEOF_TIME_T 4 \#define HAVE_PROTOTYPES 1 \#define TOKEN_PASTE(x,y) x\#\#y \#define HAVE_STDARG_PROTOTYPES 1 @@ -420,6 +421,9 @@ distclean-local:: @$(RM) *.map *.pdb *.ilk *.exp $(RUBYDEF) @$(RM) $(RUBY_INSTALL_NAME).rc $(RUBYW_INSTALL_NAME).rc $(RUBY_SO_NAME).rc +ext/extinit.obj: ext/extinit.c $(SETUP) + $(CC) $(CFLAGS) $(XCFLAGS) $(CPPFLAGS) -o$@ -c ext/extinit.c + main.$(OBJEXT): win32.h ascii.$(OBJEXT): win32.h array.$(OBJEXT): win32.h |