From patchwork Thu Oct 30 16:48:58 2014 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Thomas Wood X-Patchwork-Id: 5198931 Return-Path: X-Original-To: patchwork-intel-gfx@patchwork.kernel.org Delivered-To: patchwork-parsemail@patchwork1.web.kernel.org Received: from mail.kernel.org (mail.kernel.org [198.145.19.201]) by patchwork1.web.kernel.org (Postfix) with ESMTP id 007259F349 for ; Thu, 30 Oct 2014 16:49:15 +0000 (UTC) Received: from mail.kernel.org (localhost [127.0.0.1]) by mail.kernel.org (Postfix) with ESMTP id 27E2820219 for ; Thu, 30 Oct 2014 16:49:14 +0000 (UTC) Received: from gabe.freedesktop.org (gabe.freedesktop.org [131.252.210.177]) by mail.kernel.org (Postfix) with ESMTP id 4191C20173 for ; Thu, 30 Oct 2014 16:49:13 +0000 (UTC) Received: from gabe.freedesktop.org (localhost [127.0.0.1]) by gabe.freedesktop.org (Postfix) with ESMTP id 7754D6E0B6; Thu, 30 Oct 2014 09:49:12 -0700 (PDT) X-Original-To: intel-gfx@lists.freedesktop.org Delivered-To: intel-gfx@lists.freedesktop.org Received: from mail-wi0-f181.google.com (mail-wi0-f181.google.com [209.85.212.181]) by gabe.freedesktop.org (Postfix) with ESMTP id A7CDE6E0B3 for ; Thu, 30 Oct 2014 09:49:08 -0700 (PDT) Received: by mail-wi0-f181.google.com with SMTP id n3so7991658wiv.8 for ; Thu, 30 Oct 2014 09:49:07 -0700 (PDT) X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20130820; h=x-gm-message-state:from:to:subject:date:message-id:in-reply-to :references; bh=pf1SK7Be4mhzVL3jJQLMgqfy2u1LdXmDgpBDKz+clj0=; b=FtVG27UoUxNqXi2aSoxEj++/LkxGaeX5OQHmq8WwoQABWbtp1v4iYeeamwJBOeJ2/f 3V6HcNl4Kfwx5dyI1Lg+9ZCFoeaD58I3VpOYSuYhcD1hcqjd7YCYjd/flHQKQs3hOdYy s5Z7VMsevCzrKLjXwL56cFM4DNTAAomhLoQrJpEnG2SSAZRgRkX8g9H3QJPNPmzcRjhr 61AC0J62rmqZ86XZERWrd+futS3OpLlfOxgQ3BE1bmchef6ViHeKIl841oF5m7LZqf7Y DzJWuvgiwEkT6UkZIRx91RUu1P3AqinNOAx1q8ieKke8I48ZScClTy5RnflN/VmSL6iH K+Ow== X-Gm-Message-State: ALoCoQmO445Abi2S2GSIfnjSLOYpG/Wn0X6JOXzpprK6h/iZuo58cBYWDzGWyRpF2HZbn1QC+jLb X-Received: by 10.180.101.39 with SMTP id fd7mr38516959wib.55.1414687747909; Thu, 30 Oct 2014 09:49:07 -0700 (PDT) Received: from pistachio.icx.intel.com ([83.217.123.106]) by mx.google.com with ESMTPSA id k10sm9264702wjb.28.2014.10.30.09.49.06 for (version=TLSv1.2 cipher=ECDHE-RSA-AES128-GCM-SHA256 bits=128/128); Thu, 30 Oct 2014 09:49:07 -0700 (PDT) From: Thomas Wood To: intel-gfx@lists.freedesktop.org Date: Thu, 30 Oct 2014 16:48:58 +0000 Message-Id: <1414687741-7830-4-git-send-email-thomas.wood@intel.com> X-Mailer: git-send-email 2.1.0 In-Reply-To: <1414687741-7830-1-git-send-email-thomas.wood@intel.com> References: <1414687741-7830-1-git-send-email-thomas.wood@intel.com> Subject: [Intel-gfx] [PATCH i-g-t v2 3/6] Build the docs directory last X-BeenThere: intel-gfx@lists.freedesktop.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: Intel graphics driver community testing & development List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , MIME-Version: 1.0 Errors-To: intel-gfx-bounces@lists.freedesktop.org Sender: "Intel-gfx" X-Spam-Status: No, score=-4.8 required=5.0 tests=BAYES_00, RCVD_IN_DNSWL_MED, RP_MATCHES_RCVD, UNPARSEABLE_RELAY autolearn=unavailable version=3.3.1 X-Spam-Checker-Version: SpamAssassin 3.3.1 (2010-03-16) on mail.kernel.org X-Virus-Scanned: ClamAV using ClamSMTP Ensure that other components are built before generating the documentation. v2: build the docs directory after any optional directories Signed-off-by: Thomas Wood --- Makefile.am | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/Makefile.am b/Makefile.am index 1dacb17..4f71a3a 100644 --- a/Makefile.am +++ b/Makefile.am @@ -21,7 +21,7 @@ ACLOCAL_AMFLAGS = ${ACLOCAL_FLAGS} -I m4 -SUBDIRS = docs lib man tools scripts benchmarks demos overlay +SUBDIRS = lib man tools scripts benchmarks demos overlay if BUILD_ASSEMBLER SUBDIRS += assembler @@ -35,6 +35,8 @@ if BUILD_TESTS SUBDIRS += tests endif +SUBDIRS += docs + MAINTAINERCLEANFILES = ChangeLog INSTALL .PHONY: ChangeLog INSTALL