| 1 |
operz |
1 |
# vim: ft=make ts=4 sw=4 noet |
| 2 |
|
|
# |
| 3 |
|
|
# $Id$ |
| 4 |
|
|
# |
| 5 |
|
|
# Copyright 2008-2009 OpenCSW |
| 6 |
|
|
# |
| 7 |
|
|
# Redistribution and/or use, with or without modification, is |
| 8 |
|
|
# permitted. This software is without warranty of any kind. The |
| 9 |
|
|
# author(s) shall not be liable in the event that use of the |
| 10 |
|
|
# software causes damage. |
| 11 |
|
|
# |
| 12 |
|
|
# gar.svn.mk - Targets for working with svn |
| 13 |
|
|
# |
| 14 |
|
|
|
| 15 |
|
|
scm-help: |
| 16 |
|
|
@cat $(GARDIR)/scm-help |
| 17 |
|
|
|
| 18 |
|
|
scm-update-all: scm-update-package scm-update-gar |
| 19 |
|
|
|
| 20 |
|
|
scm-update-package: |
| 21 |
|
|
$(SVN) --ignore-externals up |
| 22 |
|
|
|
| 23 |
|
|
scm-update-gar: |
| 24 |
|
|
cd $(GARDIR) && $(SVN) --ignore-externals up |
| 25 |
|
|
|
| 26 |
|
|
scm-update-ignores: |
| 27 |
|
|
$(GARDIR)/bin/svnignore work cookies download |
| 28 |
|
|
|
| 29 |
|
|
scm-tag-release: |
| 30 |
|
|
$(SVN) cp ../trunk ../tags/$(NAME)-$(VERSION)$(SPKG_REVSTAMP) |
| 31 |
|
|
|
| 32 |
|
|
.PHONY: scm-help scm-update-all scm-update-package scm-update-gar scm-update-ignores scm-tag-release |