Ignore:
Timestamp:
Sep 15, 2006, 7:09:38 AM (19 years ago)
Author:
bird
Message:

Untested merge with GNU Make v3.81 (vendor/gnumake/2005-05-16 -> vendor/gnumake/current).

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
     2rem Copyright (C) 1998, 1999, 2000, 2001, 2002, 2003, 2004, 2005, 2006 Free
     3rem Software Foundation, Inc.
     4rem This file is part of GNU Make.
     5
     6rem GNU Make is free software; you can redistribute it and/or modify it under the
     7rem terms of the GNU General Public License as published by the Free Software
     8rem Foundation; either version 2, or (at your option) any later version.
     9
     10rem GNU Make is distributed in the hope that it will be useful, but WITHOUT ANY
     11rem WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR
     12rem A PARTICULAR PURPOSE.  See the GNU General Public License for more details.
     13
     14rem You should have received a copy of the GNU General Public License along with
     15rem GNU Make; see the file COPYING.  If not, write to the Free Software
     16rem Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
     17
     18echo Building Make for MSDOS
     19
     20rem Echo ON so they will see what is going on.
    321@echo on
    422gcc  -c -I. -I./glob -DHAVE_CONFIG_H -O2 -g commands.c -o commands.o
     
    1735gcc  -c -I. -I./glob -DHAVE_CONFIG_H -O2 -g function.c -o function.o
    1836gcc  -c -I. -I./glob -DHAVE_CONFIG_H -O2 -g vpath.c -o vpath.o
     37gcc  -c -I. -I./glob -DHAVE_CONFIG_H -O2 -g hash.c -o hash.o
     38gcc  -c -I. -I./glob -DHAVE_CONFIG_H -O2 -g strcache.c -o strcache.o
    1939gcc  -c -I. -I./glob -DHAVE_CONFIG_H -O2 -g version.c -o version.o
    2040gcc  -c -I. -I./glob -DHAVE_CONFIG_H -O2 -g ar.c -o ar.o
     
    3353echo commands.o > respf.$$$
    3454for %%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.$$$
     55for %%f in (expand function vpath hash strcache version ar arscan signame remote-stub getopt getopt1) do echo %%f.o >> respf.$$$
    3656echo glob/libglob.a >> respf.$$$
    3757@echo Linking...
Note: See TracChangeset for help on using the changeset viewer.