Skip to content

Commit

Permalink
* enc/depend (clean-srcs): split out from clean.
Browse files Browse the repository at this point in the history
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@20582 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
  • Loading branch information
nobu committed Dec 8, 2008
1 parent 0945f41 commit a6d8d84
Show file tree
Hide file tree
Showing 4 changed files with 16 additions and 6 deletions.
4 changes: 4 additions & 0 deletions ChangeLog
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
Tue Dec 9 00:17:50 2008 Nobuyoshi Nakada <[email protected]>

* enc/depend (clean-srcs): split out from clean.

Mon Dec 8 23:34:18 2008 Yuki Sonoda (Yugui) <[email protected]>

* pack.c (pack_pack): fixed odd act of 'm*', 'M*', and 'P*'.
Expand Down
2 changes: 1 addition & 1 deletion enc/Makefile.in
Original file line number Diff line number Diff line change
Expand Up @@ -59,5 +59,5 @@ make-workdir:

clean:

distclean: clean
distclean: clean clean-srcs
@$(RM) enc.mk
10 changes: 8 additions & 2 deletions enc/depend
Original file line number Diff line number Diff line change
Expand Up @@ -128,9 +128,15 @@ enc/encdb.$(OBJEXT): encdb.h
enc/trans/transdb.$(OBJEXT): transdb.h

clean:
% %w[$(ENCSOS) $(ENCOBJS) $(ENCCLEANOBJS) $(ENCCLEANLIBS) $(TRANSSOS) $(TRANSOBJS) $(TRANSCLEANOBJS) $(TRANSCLEANLIBS) $(TRANSCSRCS)].each do |clean|
% %w[$(ENCSOS) $(ENCOBJS) $(ENCCLEANOBJS) $(ENCCLEANLIBS) $(TRANSSOS) $(TRANSOBJS) $(TRANSCLEANOBJS) $(TRANSCLEANLIBS)].each do |clean|
@$(RM) <%=pathrep[clean]%>
% end
% %w[$(ENCSODIR)/trans $(ENCSODIR) enc/trans enc].each do|dir|
% %w[$(TRANSSODIR) $(ENCSODIR)].each do|dir|
@-rmdir <%=pathrep[dir]%>
% end

clean-srcs:
@$(RM) <%=pathrep['$(TRANSCSRCS)']%>
% %w[enc/trans enc].each do|dir|
@-rmdir <%=pathrep[dir]%>
% end
6 changes: 3 additions & 3 deletions version.h
Original file line number Diff line number Diff line change
@@ -1,15 +1,15 @@
#define RUBY_VERSION "1.9.1"
#define RUBY_RELEASE_DATE "2008-12-08"
#define RUBY_RELEASE_DATE "2008-12-09"
#define RUBY_VERSION_CODE 191
#define RUBY_RELEASE_CODE 20081208
#define RUBY_RELEASE_CODE 20081209
#define RUBY_PATCHLEVEL 5000

#define RUBY_VERSION_MAJOR 1
#define RUBY_VERSION_MINOR 9
#define RUBY_VERSION_TEENY 1
#define RUBY_RELEASE_YEAR 2008
#define RUBY_RELEASE_MONTH 12
#define RUBY_RELEASE_DAY 8
#define RUBY_RELEASE_DAY 9

#ifdef RUBY_EXTERN
RUBY_EXTERN const char ruby_version[];
Expand Down

0 comments on commit a6d8d84

Please sign in to comment.