diff options
| author | nobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2004-03-23 05:32:01 +0000 |
|---|---|---|
| committer | nobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2004-03-23 05:32:01 +0000 |
| commit | b0dc76ad9f87407deb8ba21eeac2f6e08ecab32e (patch) | |
| tree | f646169c2368463a264425eae104519995a29a98 /Makefile.in | |
| parent | 425b9621c8a4e569a55a67c67f1a418245068639 (diff) | |
| download | ruby-b0dc76ad9f87407deb8ba21eeac2f6e08ecab32e.tar.gz ruby-b0dc76ad9f87407deb8ba21eeac2f6e08ecab32e.tar.xz ruby-b0dc76ad9f87407deb8ba21eeac2f6e08ecab32e.zip | |
* Makefile.in, */Makefile.sub, common.mk (clean-local, distclean-local):
separate files under directories due to directory separator.
* */Makefile.sub (MKFILES): common.mk and */Makefile.sub should not be
removed.
* win32/Makefile.sub, wince/Makefile.sub: $* cannot appear in explicit
rules.
* cygwin/GNUmakefile.in: some mingw stuffs were missed.
* lib/mkmf.rb (create_makefile): Borland make wrongly removes braces
from command lines.
git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@6001 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'Makefile.in')
| -rw-r--r-- | Makefile.in | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/Makefile.in b/Makefile.in index 6bd888c88..1632a3ac2 100644 --- a/Makefile.in +++ b/Makefile.in @@ -116,6 +116,7 @@ $(LIBRUBY_SO): @-$(MINIRUBY) -e 'ARGV.each{|link| File.delete link if File.exist? link; \ File.symlink "$(LIBRUBY_SO)", link}' \ $(LIBRUBY_ALIASES) || true + fake.rb: Makefile @echo ' \ class Object; \ @@ -166,3 +167,8 @@ lex.c: keywords .c.@OBJEXT@: $(CC) $(CFLAGS) $(CPPFLAGS) -c $< +clean-local:: + @$(RM) ext/extinit.c ext/extinit.$(OBJEXT) + +distclean-local:: + @$(RM) ext/config.cache $(RBCONFIG) |
