From patchwork Fri Feb 1 23:06:33 2013 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Tom Gall X-Patchwork-Id: 14411 Return-Path: X-Original-To: patchwork@peony.canonical.com Delivered-To: patchwork@peony.canonical.com Received: from fiordland.canonical.com (fiordland.canonical.com [91.189.94.145]) by peony.canonical.com (Postfix) with ESMTP id AF3FD23F8B for ; Fri, 1 Feb 2013 23:06:52 +0000 (UTC) Received: from mail-vb0-f49.google.com (mail-vb0-f49.google.com [209.85.212.49]) by fiordland.canonical.com (Postfix) with ESMTP id 6298FA19414 for ; Fri, 1 Feb 2013 23:06:52 +0000 (UTC) Received: by mail-vb0-f49.google.com with SMTP id s24so2783512vbi.36 for ; Fri, 01 Feb 2013 15:06:51 -0800 (PST) X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=google.com; s=20120113; h=x-received:x-forwarded-to:x-forwarded-for:delivered-to:x-received :received-spf:x-received:from:to:cc:subject:date:message-id:x-mailer :x-gm-message-state; bh=ojqrS19Q8uzHD0K/TBu8oNRtLFdEDonVWaSm+X/nO5M=; b=FUsQACYvfZc1QGHO1CSbT5LL/9VJ7l59lgS4TLEroWBoEiMWq5yjafABzUOpvbnykm 9eNp59LjLLCkORGzewt8+2D3U4mCorfEZt9l3Ma02LQQKGZdCTlXMIdYz4OtPWtK1NQs wZHVeX48qCjFImQ4TD4tPneZaVOWYxWJv4/7hty81O7UF3n0qrF0mvScp71tgPc6UN81 IvUwA0TvEwB3Pj3qJJ1oTeH528BS7SbZyK2u30RPAjfZctewBGGEY9Gh23vv/Rd93/a5 Wuaa0nFgC8bOKAzfOMR0dXTK4f7+ZTKGs3rxU2rrTtv7ApuSsbqnq0Feuwf4GoGooZAz Dewg== X-Received: by 10.220.153.143 with SMTP id k15mr12732527vcw.33.1359760011808; Fri, 01 Feb 2013 15:06:51 -0800 (PST) X-Forwarded-To: linaro-patchwork@canonical.com X-Forwarded-For: patch@linaro.org linaro-patchwork@canonical.com Delivered-To: patches@linaro.org Received: by 10.58.252.8 with SMTP id zo8csp140891vec; Fri, 1 Feb 2013 15:06:51 -0800 (PST) X-Received: by 10.42.121.14 with SMTP id h14mr10745633icr.27.1359760010810; Fri, 01 Feb 2013 15:06:50 -0800 (PST) Received: from mail-ia0-x230.google.com (mail-ia0-x230.google.com [2607:f8b0:4001:c02::230]) by mx.google.com with ESMTPS id wo4si2984979igb.53.2013.02.01.15.06.50 (version=TLSv1 cipher=ECDHE-RSA-RC4-SHA bits=128/128); Fri, 01 Feb 2013 15:06:50 -0800 (PST) Received-SPF: neutral (google.com: 2607:f8b0:4001:c02::230 is neither permitted nor denied by best guess record for domain of tom.gall@linaro.org) client-ip=2607:f8b0:4001:c02::230; Authentication-Results: mx.google.com; spf=neutral (google.com: 2607:f8b0:4001:c02::230 is neither permitted nor denied by best guess record for domain of tom.gall@linaro.org) smtp.mail=tom.gall@linaro.org Received: by mail-ia0-f176.google.com with SMTP id i18so5933349iac.7 for ; Fri, 01 Feb 2013 15:06:49 -0800 (PST) X-Received: by 10.42.39.80 with SMTP id g16mr10855777ice.26.1359760009821; Fri, 01 Feb 2013 15:06:49 -0800 (PST) Received: from mars.mantorvilleexpress.com ([70.35.96.184]) by mx.google.com with ESMTPS id px5sm4909818igc.0.2013.02.01.15.06.47 (version=TLSv1.1 cipher=ECDHE-RSA-RC4-SHA bits=128/128); Fri, 01 Feb 2013 15:06:48 -0800 (PST) From: Tom Gall To: piglit@lists.freedesktop.org Cc: patches@linaro.org, Tom Gall Subject: [PATCH 1/7] Android: add top level Android.mk Date: Fri, 1 Feb 2013 17:06:33 -0600 Message-Id: <1359759999-31064-1-git-send-email-tom.gall@linaro.org> X-Mailer: git-send-email 1.7.10.4 X-Gm-Message-State: ALoCoQl10sdeZMih0mAPCRtmGf5dhVTIHsBiCcvpPAdOQIhpgCmGkqc4X+3FB4meXZxJ4eFD9RCH Add top of the tree Android.mk, sets piglit_top Signed-off-by: Tom Gall --- Android.mk | 5 +++++ 1 file changed, 5 insertions(+) create mode 100644 Android.mk diff --git a/Android.mk b/Android.mk new file mode 100644 index 0000000..8276ed9 --- /dev/null +++ b/Android.mk @@ -0,0 +1,5 @@ +LOCAL_PATH := $(call my-dir) + +piglit_top := $(LOCAL_PATH) + +include $(call all-subdir-makefiles)