From patchwork Thu Jan 29 18:47:05 2015 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Emil Velikov X-Patchwork-Id: 5744671 Return-Path: X-Original-To: patchwork-dri-devel@patchwork.kernel.org Delivered-To: patchwork-parsemail@patchwork2.web.kernel.org Received: from mail.kernel.org (mail.kernel.org [198.145.29.136]) by patchwork2.web.kernel.org (Postfix) with ESMTP id A0071BF440 for ; Thu, 29 Jan 2015 18:47:40 +0000 (UTC) Received: from mail.kernel.org (localhost [127.0.0.1]) by mail.kernel.org (Postfix) with ESMTP id AABCD2024D for ; Thu, 29 Jan 2015 18:47:39 +0000 (UTC) Received: from gabe.freedesktop.org (gabe.freedesktop.org [131.252.210.177]) by mail.kernel.org (Postfix) with ESMTP id 7256A2022D for ; Thu, 29 Jan 2015 18:47:37 +0000 (UTC) Received: from gabe.freedesktop.org (localhost [127.0.0.1]) by gabe.freedesktop.org (Postfix) with ESMTP id B0EA56E794; Thu, 29 Jan 2015 10:47:36 -0800 (PST) X-Original-To: dri-devel@lists.freedesktop.org Delivered-To: dri-devel@lists.freedesktop.org Received: from mail-wi0-f179.google.com (mail-wi0-f179.google.com [209.85.212.179]) by gabe.freedesktop.org (Postfix) with ESMTP id AF4B26E782 for ; Thu, 29 Jan 2015 10:47:33 -0800 (PST) Received: by mail-wi0-f179.google.com with SMTP id l15so28467498wiw.0 for ; Thu, 29 Jan 2015 10:47:32 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=from:to:cc:subject:date:message-id:in-reply-to:references; bh=L1CVSa53z6k8sZeO+2MZ+JwvQhm1asQ0skYwlf0QXjA=; b=bGPxtZl/Ppntm4mmAR4S2gQzKYWktyLIv7em46wPuPmz+VJzDKaOKUaoA+N7bz/Z6C jX7dBBBOj7XJVycOKtic7j54MfI6s3DVNJPB7q6nNgridbWFuuWJsLoXJTiCaTcdu6Z2 HUq44hHUcuboQCpWfj6YZSzTHyKAG5IwMlTSf03uxk6MnDKdq0GoF/6+Gyf96RTNli8L SbkWxzVJVWD8LzbEbDTF2ts+Zzq13TujGZRYfsbCNKDagkDnhNhkUBACHGNyI2GySLhQ 7wa0mEvhGM74lTkeLFJ4Fqps+cg1ZUS1Lj9Nnl26lg1YT3xt1JQu/AP0hkdg3KweMlVu oduA== X-Received: by 10.194.173.233 with SMTP id bn9mr3723662wjc.123.1422557252846; Thu, 29 Jan 2015 10:47:32 -0800 (PST) Received: from arch-laptop.localdomain (cpc12-croy20-2-0-cust52.croy.cable.virginm.net. [82.44.54.53]) by mx.google.com with ESMTPSA id hl1sm11558164wjc.18.2015.01.29.10.47.31 (version=TLSv1.2 cipher=ECDHE-RSA-AES128-SHA bits=128/128); Thu, 29 Jan 2015 10:47:32 -0800 (PST) From: Emil Velikov To: dri-devel@lists.freedesktop.org Subject: [PATCH 1/6] util: add WARN_CFLAGS, rename the c*flags vars Date: Thu, 29 Jan 2015 18:47:05 +0000 Message-Id: <1422557230-22155-2-git-send-email-emil.l.velikov@gmail.com> X-Mailer: git-send-email 2.1.3 In-Reply-To: <1422557230-22155-1-git-send-email-emil.l.velikov@gmail.com> References: <1422557230-22155-1-git-send-email-emil.l.velikov@gmail.com> Cc: emil.l.velikov@gmail.com X-BeenThere: dri-devel@lists.freedesktop.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: Direct Rendering Infrastructure - Development List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , MIME-Version: 1.0 Errors-To: dri-devel-bounces@lists.freedesktop.org Sender: "dri-devel" X-Spam-Status: No, score=-4.1 required=5.0 tests=BAYES_00, DKIM_ADSP_CUSTOM_MED, DKIM_SIGNED, FREEMAIL_FROM, RCVD_IN_DNSWL_MED, T_DKIM_INVALID, T_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 Signed-off-by: Emil Velikov --- tests/util/Makefile.am | 13 +++++++------ 1 file changed, 7 insertions(+), 6 deletions(-) diff --git a/tests/util/Makefile.am b/tests/util/Makefile.am index f8e0b17..aaaf932 100644 --- a/tests/util/Makefile.am +++ b/tests/util/Makefile.am @@ -1,13 +1,14 @@ include Makefile.sources -noinst_LTLIBRARIES = \ - libutil.la - -libutil_la_CPPFLAGS = \ +AM_CPPFLAGS = \ -I$(top_srcdir)/include/drm \ -I$(top_srcdir) -libutil_la_CFLAGS = \ - $(CAIRO_CFLAGS) +AM_CFLAGS = \ + $(CAIRO_CFLAGS) \ + $(WARN_CFLAGS) + +noinst_LTLIBRARIES = \ + libutil.la libutil_la_SOURCES = $(UTIL_FILES)