diff options
author | Ted Ross <tross@apache.org> | 2009-03-02 17:51:59 +0000 |
---|---|---|
committer | Ted Ross <tross@apache.org> | 2009-03-02 17:51:59 +0000 |
commit | 3578e8a032e35da6979edf48520a3b08a06f2e04 (patch) | |
tree | d87d0dcf0d8640eb1f1566d1c55983904de19404 | |
parent | 73d8d675766d527c0fcb9e31acf2422d3dab8cc7 (diff) | |
download | qpid-python-3578e8a032e35da6979edf48520a3b08a06f2e04.tar.gz |
Added 'build' target to make the Makefile more standard
git-svn-id: https://svn.apache.org/repos/asf/qpid/trunk/qpid@749380 13f79535-47bb-0310-9956-ffa450edef68
-rw-r--r-- | ruby/Makefile | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/ruby/Makefile b/ruby/Makefile index 0eef1518ef..9cac3207c0 100644 --- a/ruby/Makefile +++ b/ruby/Makefile @@ -24,7 +24,7 @@ SPEC_CACHE_SCRIPT = sc.rb .PHONY: spec_cache all clean distclean -all : $(SASL_MODULE) spec_cache +all : build $(SASL_MODULE) : $(SASL_DIR)/sasl.c cd $(SASL_DIR); ruby extconf.rb @@ -36,6 +36,8 @@ spec_cache : ruby -I $(RUBY_LIB) -I $(SASL_DIR) $(SPEC_CACHE_SCRIPT) rm $(SPEC_CACHE_SCRIPT) +build: $(SASL_MODULE) spec_cache + clean: cd $(SASL_DIR); make clean |