1 | @echo off
|
---|
2 | rem Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003,
|
---|
3 | rem 2004, 2005, 2006, 2007, 2008, 2009, 2010 Free Software Foundation, Inc.
|
---|
4 | rem This file is part of GNU Make.
|
---|
5 | rem
|
---|
6 | rem GNU Make is free software; you can redistribute it and/or modify it under
|
---|
7 | rem the terms of the GNU General Public License as published by the Free
|
---|
8 | rem Software Foundation; either version 3 of the License, or (at your option)
|
---|
9 | rem any later version.
|
---|
10 | rem
|
---|
11 | rem GNU Make is distributed in the hope that it will be useful, but WITHOUT
|
---|
12 | rem ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
|
---|
13 | rem FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for.
|
---|
14 | rem more details.
|
---|
15 | rem
|
---|
16 | rem You should have received a copy of the GNU General Public License along
|
---|
17 | rem with this program. If not, see <http://www.gnu.org/licenses/>.
|
---|
18 |
|
---|
19 | echo Configuring MAKE for DJGPP
|
---|
20 |
|
---|
21 | rem The SmallEnv trick protects against too small environment block,
|
---|
22 | rem in which case the values will be truncated and the whole thing
|
---|
23 | rem goes awry. COMMAND.COM will say "Out of environment space", but
|
---|
24 | rem many people don't care, so we force them to care by refusing to go.
|
---|
25 |
|
---|
26 | rem Where is the srcdir?
|
---|
27 | set XSRC=.
|
---|
28 | if not "%XSRC%"=="." goto SmallEnv
|
---|
29 | if "%1%"=="" goto SrcDone
|
---|
30 | set XSRC=%1
|
---|
31 | if not "%XSRC%"=="%1" goto SmallEnv
|
---|
32 |
|
---|
33 | :SrcDone
|
---|
34 |
|
---|
35 | update %XSRC%/configh.dos ./config.h
|
---|
36 |
|
---|
37 | rem Do they have Make?
|
---|
38 | redir -o junk.$$$ -eo make -n -f NUL
|
---|
39 | rem REDIR will return 1 if it cannot run Make.
|
---|
40 | rem If it can run Make, it will usually return 2,
|
---|
41 | rem but 0 is also OK with us.
|
---|
42 | if errorlevel 2 goto MakeOk
|
---|
43 | if not errorlevel 1 goto MakeOk
|
---|
44 | if exist junk.$$$ del junk.$$$
|
---|
45 | echo No Make program found--use DOSBUILD.BAT to build Make.
|
---|
46 | goto End
|
---|
47 |
|
---|
48 | rem They do have Make. Generate the Makefile.
|
---|
49 |
|
---|
50 | :MakeOk
|
---|
51 | del junk.$$$
|
---|
52 | update %XSRC%/Makefile.DOS ./Makefile
|
---|
53 | echo Done.
|
---|
54 | if not "%XSRC%"=="." echo Invoke Make thus: "make srcdir=%XSRC%"
|
---|
55 | goto End
|
---|
56 |
|
---|
57 | :SmallEnv
|
---|
58 | echo Your environment is too small. Please enlarge it and run me again.
|
---|
59 |
|
---|
60 | :End
|
---|
61 | set XRSC=
|
---|