blob: 35cf757ba5d356e30e36813ee0a02795fb9f2368 [file] [log] [blame]
Benedikt Böhma93a5352010-01-26 14:52:49 +01001GIT_EXEC_PATH=/usr/libexec/git-core
2
Vincent Driessenc7bbfcf2010-01-26 20:18:10 +01003all:
4 @echo "There is only one target here: install"
5 @echo "This message is deliberately inserted here to prevent accidental installation."
6 @echo ""
7 @echo "Use 'make install' explicitly to install git-flow."
8
Benedikt Böhma93a5352010-01-26 14:52:49 +01009install:
Vincent Driessen90960742010-01-26 23:26:57 +010010 install -d -m 0755 $(GIT_EXEC_PATH)
11 install -m 0755 git-flow $(GIT_EXEC_PATH)
12 install -m 0644 \
Benedikt Böhma93a5352010-01-26 14:52:49 +010013 git-flow-feature \
14 git-flow-hotfix \
15 git-flow-release \
16 git-flow-support \
Vincent Driessen90960742010-01-26 23:26:57 +010017 git-flow-version \
18 $(GIT_EXEC_PATH)
Benedikt Böhma93a5352010-01-26 14:52:49 +010019