-
Notifications
You must be signed in to change notification settings - Fork 35
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
rabbitmq-components.mk: fetch makefile from rabbitmq-common
Signed-off-by: Matteo Cafasso <[email protected]>
- Loading branch information
Showing
1 changed file
with
5 additions
and
5 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,12 +1,12 @@ | ||
# Inspired by erlang.mk bootstrap Makefile. | ||
# Fetch updated rabbitmq-components.mk from rabbitmq-server. | ||
# Fetch updated rabbitmq-components.mk from rabbitmq-common. | ||
|
||
RABBITMQ_SERVER_DIR ?= .rabbitmq-components.mk.build | ||
RABBITMQ_COMMON_DIR ?= .rabbitmq-components.mk.build | ||
|
||
rabbitmq-components.mk: rabbitmq-components-bootstrap | ||
git clone https://github.com/rabbitmq/rabbitmq-server $(RABBITMQ_SERVER_DIR) | ||
cp $(RABBITMQ_SERVER_DIR)/rabbitmq-components.mk ./rabbitmq-components.mk | ||
rm -rf $(RABBITMQ_SERVER_DIR) | ||
git clone https://github.com/rabbitmq/rabbitmq-common $(RABBITMQ_COMMON_DIR) | ||
cp $(RABBITMQ_COMMON_DIR)/mk/rabbitmq-components.mk ./rabbitmq-components.mk | ||
rm -rf $(RABBITMQ_COMMON_DIR) | ||
|
||
.PHONY: rabbitmq-components-bootstrap | ||
rabbitmq-components-bootstrap: ; |