summaryrefslogtreecommitdiff
path: root/Makefile.in
diff options
context:
space:
mode:
authornaruse <naruse@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2012-11-13 07:49:09 +0000
committernaruse <naruse@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2012-11-13 07:49:09 +0000
commitdb31b3dad519f755358f0a96baad5c378e7c7972 (patch)
tree5ca7641e02b6389275e1e9d887525e736eab5eeb /Makefile.in
parentd8aaa430747121474ae88edc5807a9b970a15e75 (diff)
* common.mk (dmyprobes.h): always create for make dist.
* Makefile.in (probes.h): create or copy dmyprobes.h * win32/Makefile.sub: only do copy dmyprobes.h. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@37640 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'Makefile.in')
-rw-r--r--Makefile.in6
1 files changed, 2 insertions, 4 deletions
diff --git a/Makefile.in b/Makefile.in
index 1ea5c33f2e..a9c21fda37 100644
--- a/Makefile.in
+++ b/Makefile.in
@@ -170,8 +170,6 @@ MESSAGE_END = ; do echo "$$line"; done
configure_args = @configure_args@
#### End of variables
-.SUFFIXES: .inc .h .c .y .i .d
-
all:
.DEFAULT: all
@@ -323,14 +321,14 @@ enc/unicode/name2ctype.h: enc/unicode/name2ctype.kwd
@$(ECHO) preprocessing $<
$(Q) $(CPP) $(warnflags) $(XCFLAGS) $(CPPFLAGS) $(COUTFLAG)$@ -E $< > $@
-.d.h:
+probes.h: dmyprobes.h
@$(ECHO) translating probes $<
$(Q)if test -n '$(DTRACE)'; then\
$(DTRACE) -o $@.tmp -h -s $<; \
sed -e 's/RUBY_/RUBY_DTRACE_/g' $@.tmp | sed -e 's/PROBES_H_TMP/PROBES_H/g' >$@; \
$(RM) $@.tmp; \
else \
- $(BASERUBY) $(srcdir)/tool/gen_dummy_probes.rb $< > $@; \
+ $(CP) dmyprobes.h probes.h; \
fi
clean-local::