1 rem Hack to change/add environment variables in the makefiles for the
\r
2 rem Windows platform.
\r
4 rem Copyright (C) 2003, 2004, 2005, 2006, 2007, 2008 Free Software Foundation, Inc.
\r
6 rem This file is part of GNU Emacs.
\r
8 rem GNU Emacs is free software; you can redistribute it and/or modify
\r
9 rem it under the terms of the GNU General Public License as published by
\r
10 rem the Free Software Foundation; either version 3, or (at your option)
\r
11 rem any later version.
\r
13 rem GNU Emacs is distributed in the hope that it will be useful,
\r
14 rem but WITHOUT ANY WARRANTY; without even the implied warranty of
\r
15 rem MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
\r
16 rem GNU General Public License for more details.
\r
18 rem You should have received a copy of the GNU General Public License
\r
19 rem along with GNU Emacs; see the file COPYING. If not, write to
\r
20 rem the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
\r
21 rem Boston, MA 02110-1301, USA.
\r
25 rem envadd "ENV1=VAL1" "ENV2=VAL2" ... /C <command line>
\r
27 rem The "/C" switch marks the end of environment variables, and the
\r
28 rem beginning of the command line.
\r
30 rem By Peter 'Luna' Runestig <peter@runestig.com> 2003
\r
33 if .%1% == ./C goto EndLoop
\r
34 rem just to avoid an endless loop:
\r
35 if .%1% == . goto EndLoop
\r
43 rem Now, run the command line
\r
44 %1 %2 %3 %4 %5 %6 %7 %8 %9
\r
47 arch-tag: 148c5181-dbce-43ae-bba6-1cc6e2a9ea75
\r