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/makefile.vms

    r281 r503  
    1 # Copyright (C) 1988, 1989, 1996, 1997 Free Software Foundation, Inc.
     1# -*-Makefile-*- to build GNU make on VMS
     2#
     3# Copyright (C) 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004, 2005,
     4# 2006 Free Software Foundation, Inc.
    25# This file is part of GNU Make.
    36#
     7# GNU Make is free software; you can redistribute it and/or modify it under the
     8# terms of the GNU General Public License as published by the Free Software
     9# Foundation; either version 2, or (at your option) any later version.
     10#
     11# GNU Make is distributed in the hope that it will be useful, but WITHOUT ANY
     12# WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR
     13# A PARTICULAR PURPOSE.  See the GNU General Public License for more details.
     14#
     15# You should have received a copy of the GNU General Public License along with
     16# GNU Make; see the file COPYING.  If not, write to the Free Software
     17# Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
     18
    419# VMS extensions from GNU Make 3.60 imported by
    520#  Klaus Kämpf (kkaempf@rmi.de)
     
    722# Modified for version 3.80 by zinser@decus.de
    823# Modified for version 3.81 by Hartmut Becker
    9 #
    10 # GNU Make is free software; you can redistribute it and/or modify
    11 # it under the terms of the GNU General Public License as published by
    12 # the Free Software Foundation; either version 2, or (at your option)
    13 # any later version.
    14 #
    15 # GNU Make is distributed in the hope that it will be useful,
    16 # but WITHOUT ANY WARRANTY; without even the implied warranty of
    17 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
    18 # GNU General Public License for more details.
    19 #
    20 # You should have received a copy of the GNU General Public License
    21 # along with GNU Make; see the file COPYING.  If not, write to
    22 # the Free Software Foundation, Inc., 59 Temple Place - Suite 330,
    23 # Boston, MA 02111-1307, USA.
    2424
    2525CC = cc
     
    3333
    3434ifeq ($(CC),cc)
    35 CFLAGS = $(defines) /include=([],[.glob])/prefix=(all,except=(glob,globfree))/standard=relaxed
     35CFLAGS = $(defines) /include=([],[.glob])/prefix=(all,except=(glob,globfree))/standard=relaxed/warn=(disable=questcompare)
    3636else
    3737CFLAGS = $(defines) /include=([],[.glob])
     
    9191objs = commands.obj,job.obj,dir.obj,file.obj,misc.obj,hash.obj,\
    9292       main.obj,read.obj,remake.obj,rule.obj,implicit.obj,\
    93        default.obj,variable.obj,expand.obj,function.obj,\
     93       default.obj,variable.obj,expand.obj,function.obj,strcache.obj,\
    9494       vpath.obj,version.obj$(ARCHIVES)$(ALLOCA)$(extras)$(getopt)$(glob)
    95 srcs = commands.c job.c dir.c file.c misc.c  hash.c\
     95srcs = commands.c job.c dir.c file.c misc.c  hash.c \
    9696        main.c read.c remake.c rule.c implicit.c \
    97         default.c variable.c expand.c function.c \
     97        default.c variable.c expand.c function.c strcache.c \
    9898        vpath.c version.c vmsfunctions.c vmsify.c $(ARCHIVES_SRC) $(ALLOCASRC) \
    9999        commands.h dep.h filedef.h job.h make.h rule.h variable.h
     
    117117# Automatically generated dependencies.
    118118commands.obj: commands.c make.h dep.h commands.h filedef.h variable.h job.h
    119 job.obj: job.c make.h commands.h job.h filedef.h variable.h
     119job.obj: job.c vmsjobs.c make.h commands.h job.h filedef.h variable.h
    120120dir.obj: dir.c make.h
    121121file.obj: file.c make.h commands.h dep.h filedef.h variable.h
    122122misc.obj: misc.c make.h dep.h
    123123hash.obj: hash.c make.h hash.h
     124strcache.obj: strcache.c make.h hash.h
    124125main.obj: main.c make.h commands.h dep.h filedef.h variable.h job.h
    125126read.obj: read.c make.h commands.h dep.h filedef.h variable.h
Note: See TracChangeset for help on using the changeset viewer.