mirror of
https://github.com/c-cube/iter.git
synced 2025-12-06 11:15:32 -05:00
Makefile target to push into stable
This commit is contained in:
parent
d5b9674124
commit
69f2fd37ab
1 changed files with 9 additions and 1 deletions
10
Makefile
10
Makefile
|
|
@ -49,10 +49,18 @@ examples:
|
|||
push_doc: all doc
|
||||
scp -r sequence.docdir/* cedeela.fr:~/simon/root/software/sequence/
|
||||
|
||||
push_stable: all
|
||||
git checkout stable
|
||||
git merge master -m 'merge from master'
|
||||
oasis setup
|
||||
git commit -a -m 'oasis files'
|
||||
git push origin
|
||||
git checkout master
|
||||
|
||||
VERSION=$(shell awk '/Version:/ {print $$2}' _oasis)
|
||||
|
||||
update_next_tag:
|
||||
@echo "update version to $(VERSION)..."
|
||||
sed -i "s/NEXT_VERSION/$(VERSION)/g" *.ml *.mli
|
||||
|
||||
.PHONY: benchs tests examples update_next_tag push_doc
|
||||
.PHONY: benchs tests examples update_next_tag push_doc push_stable
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue