source: rtems/Makefile.maint @ 41a1c334

4.104.114.84.95
Last change on this file since 41a1c334 was 859fbb49, checked in by Ralf Corsepius <ralf.corsepius@…>, on 01/28/07 at 05:50:06

2007-01-28 Ralf Corsépius <ralf.corsepius@…>

  • Makefile.maint: Sync nomenclature with that being used in cpukit/score/include/rtems/system.h (major->minor, minor->revision).
  • Property mode set to 100644
File size: 3.6 KB
Line 
1#
2# Maintainer Makefile
3#
4
5# WARNING:
6
7# THIS IS EXPERIMENTAL - DO NOT USE (YET) !
8
9# * This Makefile is only useful to RTEMS maintainers
10# * You must have write access to RTEMS CVS
11# * Running this Makefile modifies RTEMS CVS
12# * Watch out for warning and error messages - Do NOT IGNORE them!
13
14
15# MAINTAINER notes:
16
17# Cutting a new release:
18# 1. Perform a non-anonymous cvs checkout of the BRANCH
19#    you want to cut a release tarball from
20# 2. Run "make -f Makefile.maint new-revision"
21#    (rsp. "make -f Makefile.maint new-minor").
22# 3. Run "make -f Makefile.maint commit"
23# 4. Run "make -f Makefile.maint tag"
24# 5. Run "make -f Makefine.maint tarball"
25
26# -----------------
27# SECURITY: Append a string to tag to avoid accidentially screwing up cvs-tags
28# For "hot runs" you will want to use "make -f Makefile.maint TEST_TAG= <command>"
29TEST_TAG = -test1
30
31rtems_version := $(shell cat aclocal/version.m4 | sed -n '/_RTEMS_VERSION/{s/^.*VERSION.*\[\(.*\)\].*/\1/p};')
32rtems_tag     := $(shell echo "rtems-$(rtems_version)" | tr . -)
33
34# -----------------
35# Cleanup check out and cvs-tag the files inside
36tag:
37        cvs -z9 up -dP >/dev/null
38        @./bootstrap -p >/dev/null
39        cvs tag -c $(rtems_tag)$(TEST_TAG) >/dev/null
40
41# -----------------
42# Different stages of cvs-exporting
43rtems-$(rtems_version)/stamp.export:
44        cvs -z9 export -d rtems-$(rtems_version) -r $(rtems_tag)$(TEST_TAG) rtems
45        touch rtems-$(rtems_version)/stamp.export
46
47rtems-$(rtems_version).tar.bz2: rtems-$(rtems_version)/stamp.autofiles rtems-$(rtems_version)/excludes
48        tar -cj -X rtems-$(rtems_version)/excludes \
49          -f rtems-$(rtems_version).tar.bz2 rtems-$(rtems_version)
50
51rtems-$(rtems_version)/stamp.cleanup: rtems-$(rtems_version)/stamp.export
52        find rtems-$(rtems_version) -name .cvsignore -exec rm -f {} \;
53        find rtems-$(rtems_version) -name preinstall.am -exec touch {} \;
54        touch rtems-$(rtems_version)/c/src/librdbg/src/*/*/remdeb*.[hc]
55        rm -rf rtems-$(rtems_version)/contrib
56        touch rtems-$(rtems_version)/stamp.cleanup
57
58rtems-$(rtems_version)/stamp.autofiles: rtems-$(rtems_version)/stamp.cleanup
59        cd rtems-$(rtems_version) && ./bootstrap -r
60        touch rtems-$(rtems_version)/stamp.autofiles
61
62rtems-$(rtems_version)/excludes: Makefile.maint
63        @echo "Generating $@"
64        @echo "excludes" > $@
65        @echo "stamp.*" >> $@
66        @echo "autom4te.cache" >> $@
67        @echo "Makefile.maint" >> $@
68
69tarball: rtems-$(rtems_version).tar.bz2
70
71# -----------------
72# Create a new minor release
73# increments the 2nd digit of the version number
74# set the 3rd digit of the version number to 0
75# Example: 4.6.99.4 -> 4.7.0
76new-minor:
77        @v=$$(echo $(rtems_version) | sed 's,^\([0-9]\+\).*,\1,'); \
78        r=$$(echo $(rtems_version) | sed 's,^[0-9]\+\.\([0-9]\+\).*,\1,'); \
79        r=$$(($$r + 1)); version="$$v.$$r.0"; \
80        echo "New minor release: $$version"; \
81        sed -i -e "s|\[_RTEMS_VERSION\],\[.*\]|\[_RTEMS_VERSION\],\[$$version\]|" \
82          $(VERSION_FILES);
83
84# Create a new revision release
85# increments the last digit of the version number
86# Examples: 4.6.99.4 -> 4.6.99.5
87#           4.7.0 -> 4.7.1
88new-revision:
89        @m=$$(echo $(rtems_version) | sed 's,^\(.*\)\.[0-9]\+,\1,'); \
90        n=$$(echo $(rtems_version) | sed 's,^.*\.\([0-9]\+\),\1,'); \
91        n=$$(($$n + 1)); version="$$m.$$n";\
92        echo "New revision release: $$version"; \
93        sed -i -e "s|\[_RTEMS_VERSION\],\[.*\]|\[_RTEMS_VERSION\],\[$$version\]|" \
94          $(VERSION_FILES);
95
96VERSION_FILES += aclocal/version.m4
97VERSION_FILES += cpukit/aclocal/version.m4
98VERSION_FILES += c/src/aclocal/version.m4
99VERSION_FILES += testsuites/aclocal/version.m4
100
101CVS_RUN := $(shell if [ -n "$(TEST_TAG)" ]; then echo "cvs -n"; else echo "cvs"; fi)
102
103commit:
104        $(CVS_RUN) commit -m "Upgrade to $(rtems_version)" \
105          $(VERSION_FILES)
106
107.PHONY: commit new-minor new-revision tag tarball
Note: See TracBrowser for help on using the repository browser.