6 GIT-VERSION-FILE
: .FORCE-GIT-VERSION-FILE
8 -include GIT-VERSION-FILE
10 DLEXT
:= $(shell $(RUBY
) -rrbconfig
-e
'puts RbConfig::CONFIG["DLEXT"]')
11 RUBY_VERSION
:= $(shell $(RUBY
) -e
'puts RUBY_VERSION')
12 RUBY_ENGINE
:= $(shell $(RUBY
) -e
'puts((RUBY_ENGINE rescue "ruby"))')
15 ifeq ($(shell test -f script
/isolate_for_tests
&& echo t
),t
)
16 isolate_libs
:= tmp
/isolate
/$(RUBY_ENGINE
)-$(RUBY_VERSION
)/isolate.mk
17 $(isolate_libs
): script
/isolate_for_tests
18 @
$(RUBY
) script
/isolate_for_tests
19 -include $(isolate_libs
)
20 lib
:= $(lib
):$(ISOLATE_LIBS
)
23 ext
:= $(firstword $(wildcard ext
/*))
25 ext_pfx
:= tmp
/ext
/$(RUBY_ENGINE
)-$(RUBY_VERSION
)
26 ext_h
:= $(wildcard $(ext
)/*/*.h
$(ext
)/*.h
)
27 ext_src
:= $(wildcard $(ext
)/*.c
$(ext_h
))
28 ext_pfx_src
:= $(addprefix $(ext_pfx
)/,$(ext_src
))
29 ext_d
:= $(ext_pfx
)/$(ext
)/.d
30 $(ext
)/extconf.rb
: $(wildcard $(ext
)/*.h
)
35 $(ext_pfx
)/$(ext
)/%: $(ext
)/% $(ext_d
)
37 $(ext_pfx
)/$(ext
)/Makefile
: $(ext
)/extconf.rb
$(ext_d
) $(ext_h
)
39 cd
$(@D
) && $(RUBY
) $(CURDIR
)/$(ext
)/extconf.rb
40 ext_sfx
:= _ext.
$(DLEXT
)
41 ext_dl
:= $(ext_pfx
)/$(ext
)/$(notdir $(ext
)_ext.
$(DLEXT
))
42 $(ext_dl
): $(ext_src
) $(ext_pfx_src
) $(ext_pfx
)/$(ext
)/Makefile
45 lib
:= $(lib
):$(ext_pfx
)/$(ext
)
51 pkg_extra
+= GIT-VERSION-FILE NEWS ChangeLog LATEST
52 ChangeLog
: GIT-VERSION-FILE .wrongdoc.yml
54 NEWS LATEST
: ChangeLog
60 .manifest
: $(pkg_extra
)
61 (git ls-files
&& for i in
$@
$(pkg_extra
); do echo
$$i; done
) | \
63 cmp
$@
+ $@ || mv
$@
+ $@
66 doc
:: .document .wrongdoc.yml
$(pkg_extra
)
67 -find lib
-type f
-name
'*.rbc' -exec
rm -f
'{}' ';'
68 -find ext
-type f
-name
'*.rbc' -exec
rm -f
'{}' ';'
71 install -m644 COPYING doc
/COPYING
72 install -m644
$(shell grep
'^[A-Z]' .document
) doc
/
75 pkggem
:= pkg
/$(rfpackage
)-$(VERSION
).gem
76 pkgtgz
:= pkg
/$(rfpackage
)-$(VERSION
).tgz
77 release_notes
:= release_notes-
$(VERSION
)
78 release_changes
:= release_changes-
$(VERSION
)
80 release-notes
: $(release_notes
)
81 release-changes
: $(release_changes
)
83 $(WRONGDOC
) release_changes
> $@
+
84 $(VISUAL
) $@
+ && test -s
$@
+ && mv
$@
+ $@
86 $(WRONGDOC
) release_notes
> $@
+
87 $(VISUAL
) $@
+ && test -s
$@
+ && mv
$@
+ $@
89 # ensures we're actually on the tagged $(VERSION), only used for release
91 test x
"$(shell umask)" = x0022
92 git rev-parse
--verify refs
/tags/v
$(VERSION
)^
{}
93 git diff-index
--quiet HEAD^
0
94 test $$(git rev-parse
--verify HEAD^
0) = \
95 $$(git rev-parse
--verify refs
/tags/v
$(VERSION
)^
{})
98 -git ls-tree
-r HEAD | awk
'/^100644 / {print $$NF}' | xargs chmod
644
99 -git ls-tree
-r HEAD | awk
'/^100755 / {print $$NF}' | xargs chmod
755
103 install-gem
: $(pkggem
)
104 gem
install $(CURDIR
)/$<
106 $(pkggem
): manifest fix-perms
107 gem build
$(rfpackage
).gemspec
111 $(pkgtgz
): distdir
= $(basename $@
)
112 $(pkgtgz
): HEAD
= v
$(VERSION
)
113 $(pkgtgz
): manifest fix-perms
114 @
test -n
"$(distdir)"
117 tar cf
- $$(cat .manifest
) |
(cd
$(distdir
) && tar xf
-)
118 cd pkg
&& tar cf
- $(basename $(@F
)) | gzip
-9 > $(@F
)+
121 package
: $(pkgtgz
) $(pkggem
)
123 test-release
:: verify package
$(release_notes
) $(release_changes
)
124 # make tgz release on RubyForge
125 @echo rubyforge add_release
-f \
126 -n
$(release_notes
) -a
$(release_changes
) \
127 $(rfproject
) $(rfpackage
) $(VERSION
) $(pkgtgz
)
128 @echo gem push
$(pkggem
)
129 @echo rubyforge add_file \
130 $(rfproject
) $(rfpackage
) $(VERSION
) $(pkggem
)
131 release
:: verify package
$(release_notes
) $(release_changes
)
132 # make tgz release on RubyForge
133 rubyforge add_release
-f
-n
$(release_notes
) -a
$(release_changes
) \
134 $(rfproject
) $(rfpackage
) $(VERSION
) $(pkgtgz
)
135 # push gem to RubyGems.org
137 # in case of gem downloads from RubyForge releases page
139 $(rfproject
) $(rfpackage
) $(VERSION
) $(pkggem
)
141 gem install-gem
: GIT-VERSION-FILE
142 $(MAKE
) $@ VERSION
=$(GIT_VERSION
)
146 test_units
:= $(wildcard test/test_
*.rb
)
148 test-unit
: $(test_units
)
150 $(RUBY
) -I
$(lib
) $@
$(RUBY_TEST_OPTS
)
152 # this requires GNU coreutils variants
153 ifneq ($(RSYNC_DEST
),)
157 find doc
/images
-type f | \
158 TZ
=UTC xargs touch
-d
'1970-01-01 00:00:06' doc
/rdoc.css
160 $(RSYNC
) -av doc
/ $(RSYNC_DEST
)/
161 git ls-files | xargs touch
164 # Create gzip variants of the same timestamp as the original so nginx
165 # "gzip_static on" can serve the gzipped versions directly.
166 doc_gz
: docs
= $(shell find doc
-type f
! -regex
'^.*\.\(gif\|jpg\|png\|gz\)$$')
168 for i in
$(docs
); do \
169 gzip
--rsyncable
-9 < $$i > $$i.gz
; touch
-r
$$i $$i.gz
; done
171 .PHONY
: all .FORCE-GIT-VERSION-FILE doc
test $(test_units
) manifest