Author: bz
Date: Sat Mar 27 17:14:55 2010
New Revision: 205745
URL: http://svn.freebsd.org/changeset/base/205745

Log:
  MFC r201813:
  
    In sys/<arch>/conf/Makefile set TARGET to <arch>. That allows
    sys/conf/makeLINT.mk to only do certain things for certain
    architectures.
  
    Note that neither arm nor mips have the Makefile there, thus
    essentially not (yet) supporting LINT.  This would enable them
    do add special treatment to sys/conf/makeLINT.mk as well chosing
    one of the many configurations as LINT.

Modified:
  stable/8/sys/amd64/conf/Makefile
  stable/8/sys/i386/conf/Makefile
  stable/8/sys/ia64/conf/Makefile
  stable/8/sys/pc98/conf/Makefile
  stable/8/sys/powerpc/conf/Makefile
  stable/8/sys/sparc64/conf/Makefile
  stable/8/sys/sun4v/conf/Makefile
Directory Properties:
  stable/8/sys/   (props changed)
  stable/8/sys/amd64/include/xen/   (props changed)
  stable/8/sys/cddl/contrib/opensolaris/   (props changed)
  stable/8/sys/contrib/dev/acpica/   (props changed)
  stable/8/sys/contrib/pf/   (props changed)
  stable/8/sys/dev/xen/xenpci/   (props changed)

Modified: stable/8/sys/amd64/conf/Makefile
==============================================================================
--- stable/8/sys/amd64/conf/Makefile    Sat Mar 27 17:11:06 2010        
(r205744)
+++ stable/8/sys/amd64/conf/Makefile    Sat Mar 27 17:14:55 2010        
(r205745)
@@ -1,3 +1,5 @@
 # $FreeBSD$
 
+TARGET=amd64
+
 .include "${.CURDIR}/../../conf/makeLINT.mk"

Modified: stable/8/sys/i386/conf/Makefile
==============================================================================
--- stable/8/sys/i386/conf/Makefile     Sat Mar 27 17:11:06 2010        
(r205744)
+++ stable/8/sys/i386/conf/Makefile     Sat Mar 27 17:14:55 2010        
(r205745)
@@ -1,3 +1,5 @@
 # $FreeBSD$
 
+TARGET=i386
+
 .include "${.CURDIR}/../../conf/makeLINT.mk"

Modified: stable/8/sys/ia64/conf/Makefile
==============================================================================
--- stable/8/sys/ia64/conf/Makefile     Sat Mar 27 17:11:06 2010        
(r205744)
+++ stable/8/sys/ia64/conf/Makefile     Sat Mar 27 17:14:55 2010        
(r205745)
@@ -1,3 +1,5 @@
 # $FreeBSD$
 
+TARGET=ia64
+
 .include "${.CURDIR}/../../conf/makeLINT.mk"

Modified: stable/8/sys/pc98/conf/Makefile
==============================================================================
--- stable/8/sys/pc98/conf/Makefile     Sat Mar 27 17:11:06 2010        
(r205744)
+++ stable/8/sys/pc98/conf/Makefile     Sat Mar 27 17:14:55 2010        
(r205745)
@@ -1,3 +1,5 @@
 # $FreeBSD$
 
+TARGET=pc98
+
 .include "${.CURDIR}/../../conf/makeLINT.mk"

Modified: stable/8/sys/powerpc/conf/Makefile
==============================================================================
--- stable/8/sys/powerpc/conf/Makefile  Sat Mar 27 17:11:06 2010        
(r205744)
+++ stable/8/sys/powerpc/conf/Makefile  Sat Mar 27 17:14:55 2010        
(r205745)
@@ -1,3 +1,5 @@
 # $FreeBSD$
 
+TARGET=powerpc
+
 .include "${.CURDIR}/../../conf/makeLINT.mk"

Modified: stable/8/sys/sparc64/conf/Makefile
==============================================================================
--- stable/8/sys/sparc64/conf/Makefile  Sat Mar 27 17:11:06 2010        
(r205744)
+++ stable/8/sys/sparc64/conf/Makefile  Sat Mar 27 17:14:55 2010        
(r205745)
@@ -1,3 +1,5 @@
 # $FreeBSD$
 
+TARGET=sparc64
+
 .include "${.CURDIR}/../../conf/makeLINT.mk"

Modified: stable/8/sys/sun4v/conf/Makefile
==============================================================================
--- stable/8/sys/sun4v/conf/Makefile    Sat Mar 27 17:11:06 2010        
(r205744)
+++ stable/8/sys/sun4v/conf/Makefile    Sat Mar 27 17:14:55 2010        
(r205745)
@@ -1,3 +1,5 @@
 # $FreeBSD$
 
+TARGET=sun4v
+
 .include "${.CURDIR}/../../conf/makeLINT.mk"
_______________________________________________
svn-src-all@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/svn-src-all
To unsubscribe, send any mail to "svn-src-all-unsubscr...@freebsd.org"

Reply via email to