summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorTony Garnock-Jones <tonyg@lshift.net>2009-08-12 17:57:53 +0100
committerTony Garnock-Jones <tonyg@lshift.net>2009-08-12 17:57:53 +0100
commit88d5f01b0241679fed1b1032dfde1d4760eaeb9d (patch)
tree9e8818b13a351540a45183d318c1ae769f1e9434 /Makefile
parent534d0faae75ee774dfae6a7e378bba2351f9a7f8 (diff)
parent345d4d0ceb837d6a69a91b26d63349fc83837152 (diff)
downloadrabbitmq-server-git-88d5f01b0241679fed1b1032dfde1d4760eaeb9d.tar.gz
merge default into amqp_0_9_1
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile6
1 files changed, 3 insertions, 3 deletions
diff --git a/Makefile b/Makefile
index c0e0c55a9f..08b1013e28 100644
--- a/Makefile
+++ b/Makefile
@@ -66,13 +66,13 @@ $(EBIN_DIR)/rabbit.boot $(EBIN_DIR)/rabbit.script: $(EBIN_DIR)/rabbit.app $(EBIN
dialyze: $(BEAM_TARGETS)
dialyzer -c $?
-clean: cleandb
+clean:
rm -f $(EBIN_DIR)/*.beam
rm -f $(EBIN_DIR)/rabbit.app $(EBIN_DIR)/rabbit.boot $(EBIN_DIR)/rabbit.script
rm -f $(INCLUDE_DIR)/rabbit_framing.hrl $(SOURCE_DIR)/rabbit_framing.erl codegen.pyc
rm -f docs/*.[0-9].gz
-cleandb: stop-node
+cleandb:
rm -rf $(RABBITMQ_MNESIA_DIR)/*
############ various tasks to interact with RabbitMQ ###################
@@ -133,7 +133,7 @@ srcdist: distclean
cp README.in $(TARGET_SRC_DIR)/README
elinks -dump -no-references -no-numbering $(WEB_URL)build-server.html \
>> $(TARGET_SRC_DIR)/BUILD
- sed -i.save 's/%%VERSION%%/$(VERSION)/' $(TARGET_SRC_DIR)/ebin/rabbit_app.in && rm -f $(TARGET_SRC_DIR)/ebin/rabbit_app.in.save
+ sed -i.save 's/%%VSN%%/$(VERSION)/' $(TARGET_SRC_DIR)/ebin/rabbit_app.in && rm -f $(TARGET_SRC_DIR)/ebin/rabbit_app.in.save
cp -r $(AMQP_CODEGEN_DIR)/* $(TARGET_SRC_DIR)/codegen/
cp codegen.py Makefile generate_app $(TARGET_SRC_DIR)