netfilter-devel.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
From: Tracey Dent <tdent48227@gmail.com>
To: davem@davemloft.net
Cc: marcel@holtmann.org, padovan@profusion.mobi,
	linux-bluetooth@vger.kernel.org, netdev@vger.kernel.org,
	sjur.brandeland@stericsson.com, socketcan@hartkopp.net,
	urs.thuermann@volkswagen.de, socketcan-core@lists.berlios.de,
	sage@newdream.net, ceph-devel@vger.kernel.org,
	wang840925@gmail.com, jlayton@redhat.com, kaber@trash.net,
	pekkas@netcore.fi, linux-kernel@vger.kernel.org,
	netfilter-devel@vger.kernel.org, netfilter@vger.kernel.org,
	samuel@sortiz.org, Tracey Dent <tdent48227@gmail.com>
Subject: [PATCH 02/17] Net: caif: Makefile: Remove deprecated items
Date: Sun, 21 Nov 2010 20:03:13 -0500	[thread overview]
Message-ID: <1290387808-2239-3-git-send-email-tdent48227@gmail.com> (raw)
In-Reply-To: <1290387808-2239-1-git-send-email-tdent48227@gmail.com>

Changed Makefile to use <modules>-y instead of <modules>-objs
because -objs is deprecated and not mentioned in
Documentation/kbuild/makefiles.txt.

Also, use the ccflags-$ flag instead of EXTRA_CFLAGS because EXTRA_CFLAGS is
deprecated and should now be switched.

Last but not least, took out if-conditionals.

Signed-off-by: Tracey Dent <tdent48227@gmail.com>
---
 net/caif/Makefile |    8 +++-----
 1 files changed, 3 insertions(+), 5 deletions(-)

diff --git a/net/caif/Makefile b/net/caif/Makefile
index f87481f..9d38e40 100644
--- a/net/caif/Makefile
+++ b/net/caif/Makefile
@@ -1,8 +1,6 @@
-ifeq ($(CONFIG_CAIF_DEBUG),y)
-EXTRA_CFLAGS += -DDEBUG
-endif
+ccflags-$(CONFIG_CAIF_DEBUG)     :=      -DDEBUG
 
-caif-objs := caif_dev.o \
+caif-y := caif_dev.o \
 	cfcnfg.o cfmuxl.o cfctrl.o  \
 	cffrml.o cfveil.o cfdbgl.o\
 	cfserl.o cfdgml.o  \
@@ -13,4 +11,4 @@ obj-$(CONFIG_CAIF) += caif.o
 obj-$(CONFIG_CAIF_NETDEV) += chnl_net.o
 obj-$(CONFIG_CAIF) += caif_socket.o
 
-export-objs := caif.o
+export-y := caif.o
-- 
1.7.3.2.245.g03276


  parent reply	other threads:[~2010-11-22  1:03 UTC|newest]

Thread overview: 19+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2010-11-22  1:03 [PATCH 00/00] Remove deprecated items from Makefiles Tracey Dent
     [not found] ` <1290387808-2239-1-git-send-email-tdent48227-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org>
2010-11-22  1:03   ` [PATCH 01/17] Net: bluetooth: Makefile: Remove deprecated kbuild goal definitions Tracey Dent
2010-11-22  1:03   ` [PATCH 16/17] Net: sunrpc: auth_gss: " Tracey Dent
2010-11-22  1:03 ` Tracey Dent [this message]
2010-11-22  1:03 ` [PATCH 03/17] Net: can: " Tracey Dent
2010-11-22  1:03 ` [PATCH 04/17] Net: ceph: Makefile: remove " Tracey Dent
2010-11-22  1:03 ` [PATCH 05/17] Net: dns_resolver: Makefile: Remove " Tracey Dent
2010-11-22  1:03 ` [PATCH 06/17] Net: econet: " Tracey Dent
2010-11-22  1:03 ` [PATCH 07/17] Net: ipv4: netfilter: " Tracey Dent
2010-11-22  1:03 ` [PATCH 08/17] Net: ipv6: netfiliter: " Tracey Dent
2010-11-22  1:03 ` [PATCH 09/17] Net: irda: ircomm: Makefile: Remove deprecated kbuild goal defintions Tracey Dent
2010-11-22  1:03 ` [PATCH 10/17] Net: irda: irlan: Makefile: Remove deprecated kbuild goal definitions Tracey Dent
2010-11-22  1:03 ` [PATCH 11/17] Net: irda: irnet: " Tracey Dent
2010-11-22  1:03 ` [PATCH 12/17] Net: lapb: " Tracey Dent
2010-11-22  1:03 ` [PATCH 13/17] Net: phonet: " Tracey Dent
2010-11-22  1:03 ` [PATCH 14/17] Net: rds: Makefile: Remove deprecated items Tracey Dent
2010-11-22  1:03 ` [PATCH 15/17] Net: rxrpc: Makefile: Remove deprecated kbuild goal definitions Tracey Dent
2010-11-22  1:03 ` [PATCH 17/17] Net: wanrouter: " Tracey Dent
2010-11-22 16:17 ` [PATCH 00/00] Remove deprecated items from Makefiles David Miller

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=1290387808-2239-3-git-send-email-tdent48227@gmail.com \
    --to=tdent48227@gmail.com \
    --cc=ceph-devel@vger.kernel.org \
    --cc=davem@davemloft.net \
    --cc=jlayton@redhat.com \
    --cc=kaber@trash.net \
    --cc=linux-bluetooth@vger.kernel.org \
    --cc=linux-kernel@vger.kernel.org \
    --cc=marcel@holtmann.org \
    --cc=netdev@vger.kernel.org \
    --cc=netfilter-devel@vger.kernel.org \
    --cc=netfilter@vger.kernel.org \
    --cc=padovan@profusion.mobi \
    --cc=pekkas@netcore.fi \
    --cc=sage@newdream.net \
    --cc=samuel@sortiz.org \
    --cc=sjur.brandeland@stericsson.com \
    --cc=socketcan-core@lists.berlios.de \
    --cc=socketcan@hartkopp.net \
    --cc=urs.thuermann@volkswagen.de \
    --cc=wang840925@gmail.com \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).