diff options
author | naruse <naruse@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2012-11-13 06:38:08 +0000 |
---|---|---|
committer | naruse <naruse@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2012-11-13 06:38:08 +0000 |
commit | d8aaa430747121474ae88edc5807a9b970a15e75 (patch) | |
tree | 21516c44a516e01e7eb273f0662ca6ee7167ec76 | |
parent | aec93c22832ef302d102fe45cafa506b4edc1436 (diff) | |
download | bundler-d8aaa430747121474ae88edc5807a9b970a15e75.tar.gz |
* Makefile.in (.SUFFIX): .SUFFIX is needed here for .d.h on bsd make.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@37639 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
-rw-r--r-- | ChangeLog | 6 | ||||
-rw-r--r-- | Makefile.in | 2 |
2 files changed, 6 insertions, 2 deletions
@@ -1,3 +1,7 @@ +Tue Nov 13 15:37:21 2012 NARUSE, Yui <naruse@ruby-lang.org> + + * Makefile.in (.SUFFIX): .SUFFIX is needed here for .d.h on bsd make. + Tue Nov 13 15:34:35 2012 NAKAMURA Usaku <usa@ruby-lang.org> * common.mk Makefile.in win32/Makefile.sub (.d.h): it's not common. @@ -15,8 +19,6 @@ Tue Nov 13 12:27:11 2012 NARUSE, Yui <naruse@ruby-lang.org> * tool/gen_dummy_probes.rb: reimplemented with ruby because sed is not available on Windows Microsoft VC++ environment. -Tue Nov 13 06:50:02 2012 Aaron Patterson <aaron@tenderlovemaking.com> - Tue Nov 13 12:30:26 2012 NAKAMURA Usaku <usa@ruby-lang.org> * win32/README.win32: added mention about build directory. currently diff --git a/Makefile.in b/Makefile.in index 14131ce963..1ea5c33f2e 100644 --- a/Makefile.in +++ b/Makefile.in @@ -170,6 +170,8 @@ MESSAGE_END = ; do echo "$$line"; done configure_args = @configure_args@ #### End of variables +.SUFFIXES: .inc .h .c .y .i .d + all: .DEFAULT: all |