Return-Path: X-Original-To: apmail-couchdb-commits-archive@www.apache.org Delivered-To: apmail-couchdb-commits-archive@www.apache.org Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by minotaur.apache.org (Postfix) with SMTP id 641B018078 for ; Fri, 24 Jul 2015 10:22:17 +0000 (UTC) Received: (qmail 42496 invoked by uid 500); 24 Jul 2015 10:21:38 -0000 Delivered-To: apmail-couchdb-commits-archive@couchdb.apache.org Received: (qmail 42344 invoked by uid 500); 24 Jul 2015 10:21:38 -0000 Mailing-List: contact commits-help@couchdb.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@couchdb.apache.org Delivered-To: mailing list commits@couchdb.apache.org Received: (qmail 42159 invoked by uid 99); 24 Jul 2015 10:21:38 -0000 Received: from git1-us-west.apache.org (HELO git1-us-west.apache.org) (140.211.11.23) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 24 Jul 2015 10:21:38 +0000 Received: by git1-us-west.apache.org (ASF Mail Server at git1-us-west.apache.org, from userid 33) id F06A0E0414; Fri, 24 Jul 2015 10:21:37 +0000 (UTC) Content-Type: text/plain; charset="us-ascii" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit From: kxepal@apache.org To: commits@couchdb.apache.org Date: Fri, 24 Jul 2015 10:21:38 -0000 Message-Id: <2f5acbcb67ff427d8b638ce26501f93c@git.apache.org> In-Reply-To: <48146610bfff48509ef2e6ef01332e17@git.apache.org> References: <48146610bfff48509ef2e6ef01332e17@git.apache.org> X-Mailer: ASF-Git Admin Mailer Subject: [2/2] ets-lru commit: updated refs/heads/master to 0912804 Add Makefile Project: http://git-wip-us.apache.org/repos/asf/couchdb-ets-lru/repo Commit: http://git-wip-us.apache.org/repos/asf/couchdb-ets-lru/commit/8a50cf57 Tree: http://git-wip-us.apache.org/repos/asf/couchdb-ets-lru/tree/8a50cf57 Diff: http://git-wip-us.apache.org/repos/asf/couchdb-ets-lru/diff/8a50cf57 Branch: refs/heads/master Commit: 8a50cf5714e861f6fbafa78c424370005f6bd529 Parents: fb44bea Author: Alexander Shorin Authored: Fri Jul 24 05:49:21 2015 +0300 Committer: Alexander Shorin Committed: Fri Jul 24 07:33:14 2015 +0300 ---------------------------------------------------------------------- Makefile | 41 +++++++++++++++++++++++++++++++++++++++++ 1 file changed, 41 insertions(+) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/couchdb-ets-lru/blob/8a50cf57/Makefile ---------------------------------------------------------------------- diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..058a7ec --- /dev/null +++ b/Makefile @@ -0,0 +1,41 @@ +REBAR?=rebar + + +.PHONY: all +# target: all - Makes everything +all: build + + +.PHONY: build +# target: build - Builds the project +build: + $(REBAR) compile + + +.PHONY: check +# target: check - Checks if project builds and passes all the tests +check: build eunit + + +.PHONY: clean +# target: clean - Removes build artifacts +clean: + $(REBAR) clean + + +.PHONY: distclean +# target: distclean - Removes all unversioned files +distclean: clean + git clean -fxd + + +.PHONY: eunit +# target: eunit - Runs eunit test suite +eunit: + $(REBAR) eunit + + +.PHONY: help +# target: help - Prints this help +help: + @egrep "^# target:" Makefile | sed -e 's/^# target: //g' | sort