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 | b10a3c15cf0b3ab78fe761ad7f7cc37a54d8e0ad (patch) | |
tree | 225b6819959134ec7c2f91ad5969f788886ae8fb /Makefile.in | |
parent | 86a34bd0f3b11183e1f8d0f7b6b2589a7a7d9710 (diff) | |
download | ruby-b10a3c15cf0b3ab78fe761ad7f7cc37a54d8e0ad.tar.gz ruby-b10a3c15cf0b3ab78fe761ad7f7cc37a54d8e0ad.tar.xz ruby-b10a3c15cf0b3ab78fe761ad7f7cc37a54d8e0ad.zip |
* 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: http://svn.ruby-lang.org/repos/ruby/trunk@6113 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'Makefile.in')
-rw-r--r-- | Makefile.in | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/Makefile.in b/Makefile.in index 1632a3ac2..f722bc792 100644 --- a/Makefile.in +++ b/Makefile.in @@ -136,8 +136,6 @@ fake.rb: Makefile Makefile: $(srcdir)/Makefile.in -PHONY: - $(MKFILES): config.status $(srcdir)/common.mk MAKE=$(MAKE) $(SHELL) ./config.status @{ \ @@ -172,3 +170,6 @@ clean-local:: distclean-local:: @$(RM) ext/config.cache $(RBCONFIG) + +ext/extinit.$(OBJEXT): ext/extinit.c $(SETUP) + $(CC) $(CFLAGS) $(XCFLAGS) $(CPPFLAGS) -o$@ -c ext/extinit.c |