From owner-svn-src-user@FreeBSD.ORG Tue Sep 1 22:24:27 2009 Return-Path: Delivered-To: svn-src-user@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 9224F106566B; Tue, 1 Sep 2009 22:24:27 +0000 (UTC) (envelope-from edwin@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id 819268FC14; Tue, 1 Sep 2009 22:24:27 +0000 (UTC) Received: from svn.freebsd.org (localhost [127.0.0.1]) by svn.freebsd.org (8.14.3/8.14.3) with ESMTP id n81MORLm074122; Tue, 1 Sep 2009 22:24:27 GMT (envelope-from edwin@svn.freebsd.org) Received: (from edwin@localhost) by svn.freebsd.org (8.14.3/8.14.3/Submit) id n81MOROe074120; Tue, 1 Sep 2009 22:24:27 GMT (envelope-from edwin@svn.freebsd.org) Message-Id: <200909012224.n81MOROe074120@svn.freebsd.org> From: Edwin Groothuis Date: Tue, 1 Sep 2009 22:24:27 +0000 (UTC) To: src-committers@freebsd.org, svn-src-user@freebsd.org X-SVN-Group: user MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Cc: Subject: svn commit: r196744 - user/edwin/locale/share/msgdef X-BeenThere: svn-src-user@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: "SVN commit messages for the experimental " user" src tree" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 01 Sep 2009 22:24:27 -0000 Author: edwin Date: Tue Sep 1 22:24:27 2009 New Revision: 196744 URL: http://svn.freebsd.org/changeset/base/196744 Log: Split between the user-generatable and maintainer-generatable targets and sources. Use the FULL environment variable to toggle this. Modified: user/edwin/locale/share/msgdef/Makefile Modified: user/edwin/locale/share/msgdef/Makefile ============================================================================== --- user/edwin/locale/share/msgdef/Makefile Tue Sep 1 22:03:29 2009 (r196743) +++ user/edwin/locale/share/msgdef/Makefile Tue Sep 1 22:24:27 2009 (r196744) @@ -120,7 +120,10 @@ FILESDIR_${ccln}.${cm}.out= ${LOCALEDIR} .endfor FILES= ${ALLFILES:S/$/.out/} -CLEANFILES= ${ALLFILES:S/$/.out/} ${CCLN:S/$/.src/} +CLEANFILES= ${ALLFILES:S/$/.out/} +.if defined(FULL) +CLEANFILES+= ${CCLN:S/$/.src/} +.endif FILESNAME= ${LCTYPE} # All links @@ -215,10 +218,16 @@ SYMLINKS+= ../${ccln}.${cm}/${LCTYPE} ${ # .for ccln in ${CCLN} + +# Normal makes don't need to convert from .unicode to .src +. if defined(FULL) ${ccln}.src: ${ccln}.unicode echo ${.ALLSRC} > ${.TARGET} +. endif + ${ccln}.UTF-8.out: ${ccln}.src grep -v '^#' < ${.ALLSRC} > ${.TARGET} + .if defined(CMS_${ccln}) .for cms in ${CMS_${ccln}} ${ccln}.${cms}.out: ${ccln}.src