Changeset 503 for trunk/src/gmake/makefile.vms
- Timestamp:
- Sep 15, 2006, 7:09:38 AM (19 years ago)
- 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. 2 5 # This file is part of GNU Make. 3 6 # 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 4 19 # VMS extensions from GNU Make 3.60 imported by 5 20 # Klaus Kämpf (kkaempf@rmi.de) … … 7 22 # Modified for version 3.80 by zinser@decus.de 8 23 # Modified for version 3.81 by Hartmut Becker 9 #10 # GNU Make is free software; you can redistribute it and/or modify11 # it under the terms of the GNU General Public License as published by12 # 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 of17 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the18 # GNU General Public License for more details.19 #20 # You should have received a copy of the GNU General Public License21 # along with GNU Make; see the file COPYING. If not, write to22 # the Free Software Foundation, Inc., 59 Temple Place - Suite 330,23 # Boston, MA 02111-1307, USA.24 24 25 25 CC = cc … … 33 33 34 34 ifeq ($(CC),cc) 35 CFLAGS = $(defines) /include=([],[.glob])/prefix=(all,except=(glob,globfree))/standard=relaxed 35 CFLAGS = $(defines) /include=([],[.glob])/prefix=(all,except=(glob,globfree))/standard=relaxed/warn=(disable=questcompare) 36 36 else 37 37 CFLAGS = $(defines) /include=([],[.glob]) … … 91 91 objs = commands.obj,job.obj,dir.obj,file.obj,misc.obj,hash.obj,\ 92 92 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,\ 94 94 vpath.obj,version.obj$(ARCHIVES)$(ALLOCA)$(extras)$(getopt)$(glob) 95 srcs = commands.c job.c dir.c file.c misc.c hash.c \95 srcs = commands.c job.c dir.c file.c misc.c hash.c \ 96 96 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 \ 98 98 vpath.c version.c vmsfunctions.c vmsify.c $(ARCHIVES_SRC) $(ALLOCASRC) \ 99 99 commands.h dep.h filedef.h job.h make.h rule.h variable.h … … 117 117 # Automatically generated dependencies. 118 118 commands.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.h119 job.obj: job.c vmsjobs.c make.h commands.h job.h filedef.h variable.h 120 120 dir.obj: dir.c make.h 121 121 file.obj: file.c make.h commands.h dep.h filedef.h variable.h 122 122 misc.obj: misc.c make.h dep.h 123 123 hash.obj: hash.c make.h hash.h 124 strcache.obj: strcache.c make.h hash.h 124 125 main.obj: main.c make.h commands.h dep.h filedef.h variable.h job.h 125 126 read.obj: read.c make.h commands.h dep.h filedef.h variable.h
Note:
See TracChangeset
for help on using the changeset viewer.