Changeset 503 for trunk/src/gmake/dosbuild.bat
- Timestamp:
- Sep 15, 2006, 7:09:38 AM (19 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/gmake/dosbuild.bat
r53 r503 1 @echo Building Make for MSDOS 2 @rem Echo ON so they will see what is going on. 1 @echo off 2 rem Copyright (C) 1998, 1999, 2000, 2001, 2002, 2003, 2004, 2005, 2006 Free 3 rem Software Foundation, Inc. 4 rem This file is part of GNU Make. 5 6 rem GNU Make is free software; you can redistribute it and/or modify it under the 7 rem terms of the GNU General Public License as published by the Free Software 8 rem Foundation; either version 2, or (at your option) any later version. 9 10 rem GNU Make is distributed in the hope that it will be useful, but WITHOUT ANY 11 rem WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR 12 rem A PARTICULAR PURPOSE. See the GNU General Public License for more details. 13 14 rem You should have received a copy of the GNU General Public License along with 15 rem GNU Make; see the file COPYING. If not, write to the Free Software 16 rem Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA. 17 18 echo Building Make for MSDOS 19 20 rem Echo ON so they will see what is going on. 3 21 @echo on 4 22 gcc -c -I. -I./glob -DHAVE_CONFIG_H -O2 -g commands.c -o commands.o … … 17 35 gcc -c -I. -I./glob -DHAVE_CONFIG_H -O2 -g function.c -o function.o 18 36 gcc -c -I. -I./glob -DHAVE_CONFIG_H -O2 -g vpath.c -o vpath.o 37 gcc -c -I. -I./glob -DHAVE_CONFIG_H -O2 -g hash.c -o hash.o 38 gcc -c -I. -I./glob -DHAVE_CONFIG_H -O2 -g strcache.c -o strcache.o 19 39 gcc -c -I. -I./glob -DHAVE_CONFIG_H -O2 -g version.c -o version.o 20 40 gcc -c -I. -I./glob -DHAVE_CONFIG_H -O2 -g ar.c -o ar.o … … 33 53 echo commands.o > respf.$$$ 34 54 for %%f in (job dir file misc main read remake rule implicit default variable) do echo %%f.o >> respf.$$$ 35 for %%f in (expand function vpath version ar arscan signame remote-stub getopt getopt1) do echo %%f.o >> respf.$$$55 for %%f in (expand function vpath hash strcache version ar arscan signame remote-stub getopt getopt1) do echo %%f.o >> respf.$$$ 36 56 echo glob/libglob.a >> respf.$$$ 37 57 @echo Linking...
Note:
See TracChangeset
for help on using the changeset viewer.