blob: 8e1faf35e8317e26df5e0d6c971c7245032d692a [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:
10 install -m 0755 -t $(GIT_EXEC_PATH) git-flow
11 install -m 0644 -t $(GIT_EXEC_PATH) \
12 git-flow-feature \
13 git-flow-hotfix \
14 git-flow-release \
15 git-flow-support \
16 git-flow-version
17