diff options
| author | Tim Watson <tim@rabbitmq.com> | 2012-07-04 11:52:14 +0100 |
|---|---|---|
| committer | Tim Watson <tim@rabbitmq.com> | 2012-07-04 11:52:14 +0100 |
| commit | dbdca3fc6b3fc939f7c1303ae5ed18aca7de437c (patch) | |
| tree | c8a26e2285c9645684b2dee052019cd9182324f6 /Makefile | |
| parent | dbb24b9824d487ae31481a28225d6f29e9b30691 (diff) | |
| download | rabbitmq-server-git-dbdca3fc6b3fc939f7c1303ae5ed18aca7de437c.tar.gz | |
ensure the temp directories are deleted before proceeding
Diffstat (limited to 'Makefile')
| -rw-r--r-- | Makefile | 10 |
1 files changed, 6 insertions, 4 deletions
@@ -103,7 +103,7 @@ endif all: $(TARGETS) -.PHONY: plugins +.PHONY: plugins check-xref ifneq "$(PLUGINS_SRC_DIR)" "" plugins: [ -d "$(PLUGINS_SRC_DIR)/rabbitmq-server" ] || ln -s "$(CURDIR)" "$(PLUGINS_SRC_DIR)/rabbitmq-server" @@ -114,14 +114,16 @@ plugins: # add -q to remove printout of warnings.... check-xref: $(BEAM_TARGETS) $(PLUGINS_DIR) - rm -rf lib # just in case! - ./check_xref $(PLUGINS_DIR) + rm -rf lib + ./check_xref $(PLUGINS_DIR) -q else plugins: # Not building plugins + check-xref: -# No xref checks enabled + $(info xref checks are disabled) + endif $(DEPS_FILE): $(SOURCES) $(INCLUDES) |
