|
|
@ -201,13 +201,6 @@ git-checkout-current: |
|
|
|
$(VERSION_FILE): .git/refs/heads/* .git/refs/tags/* .git/HEAD |
|
|
|
$(VERSION_FILE): .git/refs/heads/* .git/refs/tags/* .git/HEAD |
|
|
|
echo "VERSION = \"$$(git describe)\"" > $@
|
|
|
|
echo "VERSION = \"$$(git describe)\"" > $@
|
|
|
|
|
|
|
|
|
|
|
|
# Pub is Nico's "push to all git remotes" thing
|
|
|
|
|
|
|
|
pub: |
|
|
|
|
|
|
|
for remote in "" github sf; do \
|
|
|
|
|
|
|
|
echo "Pushing to $$remote"; \
|
|
|
|
|
|
|
|
git push --mirror $$remote; \
|
|
|
|
|
|
|
|
done
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
git-release: git-tag git-branch-merge |
|
|
|
git-release: git-tag git-branch-merge |
|
|
|
make pub
|
|
|
|
make pub
|
|
|
|
|
|
|
|
|
|
|
@ -283,3 +276,17 @@ distclean: |
|
|
|
# Archlinux
|
|
|
|
# Archlinux
|
|
|
|
rm -f cdist-*.pkg.tar.xz cdist-*.tar.gz
|
|
|
|
rm -f cdist-*.pkg.tar.xz cdist-*.tar.gz
|
|
|
|
rm -rf pkg/ src/
|
|
|
|
rm -rf pkg/ src/
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
################################################################################
|
|
|
|
|
|
|
|
# Misc
|
|
|
|
|
|
|
|
#
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
# The pub is Nico's "push to all git remotes" way ("make pub")
|
|
|
|
|
|
|
|
pub: |
|
|
|
|
|
|
|
for remote in "" github sf; do \
|
|
|
|
|
|
|
|
echo "Pushing to $$remote"; \
|
|
|
|
|
|
|
|
git push --mirror $$remote; \
|
|
|
|
|
|
|
|
done
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
test: |
|
|
|
|
|
|
|
$(helper) $@
|
|
|
|