svn commit: r269366 - in head/sys/modules/cxgbe: if_cxgbe iw_cxgbe tom

Navdeep Parhar np at FreeBSD.org
Fri Aug 1 01:53:40 UTC 2014


Author: np
Date: Fri Aug  1 01:53:39 2014
New Revision: 269366
URL: http://svnweb.freebsd.org/changeset/base/269366

Log:
  List one file per line in the Makefiles.  This makes it easier to read
  diffs when a file is added or removed.
  
  MFC after:	2 weeks

Modified:
  head/sys/modules/cxgbe/if_cxgbe/Makefile
  head/sys/modules/cxgbe/iw_cxgbe/Makefile
  head/sys/modules/cxgbe/tom/Makefile

Modified: head/sys/modules/cxgbe/if_cxgbe/Makefile
==============================================================================
--- head/sys/modules/cxgbe/if_cxgbe/Makefile	Fri Aug  1 01:48:41 2014	(r269365)
+++ head/sys/modules/cxgbe/if_cxgbe/Makefile	Fri Aug  1 01:53:39 2014	(r269366)
@@ -8,18 +8,24 @@ CXGBE=	${.CURDIR}/../../../dev/cxgbe
 .PATH: ${CXGBE} ${CXGBE}/common
 
 KMOD=	if_cxgbe
-SRCS=	t4_main.c t4_sge.c t4_l2t.c t4_tracer.c t4_netmap.c
-SRCS+=	t4_hw.c
-SRCS+=	device_if.h bus_if.h pci_if.h
-SRCS+=	opt_inet.h opt_inet6.h
+SRCS=	bus_if.h
+SRCS+=	device_if.h
+SRCS+=	opt_inet.h
+SRCS+=	opt_inet6.h
 SRCS+=	opt_ofed.h
+SRCS+=	pci_if.h
+SRCS+=	t4_hw.c
+SRCS+=	t4_l2t.c
+SRCS+=	t4_main.c
+SRCS+=	t4_netmap.c
+SRCS+=	t4_sge.c
+SRCS+=	t4_tracer.c
 
 # Provide the timestamp of a packet in its header mbuf.
 #CFLAGS+= -DT4_PKT_TIMESTAMP
 
 CFLAGS+= -I${CXGBE}
 
-
 .if !defined(KERNBUILDDIR)
 .if ${MK_INET_SUPPORT} != "no"
 opt_inet.h:

Modified: head/sys/modules/cxgbe/iw_cxgbe/Makefile
==============================================================================
--- head/sys/modules/cxgbe/iw_cxgbe/Makefile	Fri Aug  1 01:48:41 2014	(r269365)
+++ head/sys/modules/cxgbe/iw_cxgbe/Makefile	Fri Aug  1 01:53:39 2014	(r269366)
@@ -6,9 +6,25 @@ CXGBE=	${.CURDIR}/../../../dev/cxgbe
 .PATH: ${CXGBE}/iw_cxgbe
 
 KMOD=	iw_cxgbe
-SRCS=	device.c cm.c provider.c mem.c cq.c qp.c resource.c ev.c id_table.c
-SRCS+=	bus_if.h device_if.h opt_sched.h pci_if.h pcib_if.h opt_ktr.h
-SRCS+=	opt_inet.h opt_ofed.h vnode_if.h
+SRCS=	bus_if.h
+SRCS+=	cm.c
+SRCS+=	cq.c
+SRCS+=	device.c
+SRCS+=	device_if.h
+SRCS+=	ev.c
+SRCS+=	id_table.c
+SRCS+=	mem.c
+SRCS+=	opt_inet.h
+SRCS+=	opt_ktr.h
+SRCS+=	opt_ofed.h
+SRCS+=	opt_sched.h
+SRCS+=	pci_if.h
+SRCS+=	pcib_if.h
+SRCS+=	provider.c
+SRCS+=	qp.c
+SRCS+=	resource.c
+SRCS+=	vnode_if.h
+
 CFLAGS+= -I${CXGBE} -I${.CURDIR}/../../../ofed/include -DLINUX_TYPES_DEFINED
 
 .if !defined(KERNBUILDDIR)

Modified: head/sys/modules/cxgbe/tom/Makefile
==============================================================================
--- head/sys/modules/cxgbe/tom/Makefile	Fri Aug  1 01:48:41 2014	(r269365)
+++ head/sys/modules/cxgbe/tom/Makefile	Fri Aug  1 01:53:39 2014	(r269366)
@@ -8,9 +8,17 @@ CXGBE=	${.CURDIR}/../../../dev/cxgbe
 .PATH: ${CXGBE}/tom
 
 KMOD=	t4_tom
-SRCS=	t4_tom.c t4_connect.c t4_listen.c t4_cpl_io.c t4_tom_l2t.c t4_ddp.c
-SRCS+=	device_if.h bus_if.h pci_if.h
-SRCS+=	opt_inet.h opt_inet6.h
+SRCS=	bus_if.h
+SRCS+=	device_if.h
+SRCS+=	opt_inet.h
+SRCS+=	opt_inet6.h
+SRCS+=	pci_if.h
+SRCS+=	t4_connect.c
+SRCS+=	t4_cpl_io.c
+SRCS+=	t4_ddp.c
+SRCS+=	t4_listen.c
+SRCS+=	t4_tom.c
+SRCS+=	t4_tom_l2t.c
 
 CFLAGS+= -I${CXGBE}
 


More information about the svn-src-head mailing list