- Fix Savannah bug #27093
[make.git] / makefile.vms
blob224354195200775b4f77e9684af8b264d62cbcb5
1 # -*-Makefile-*- to build GNU make on VMS
3 # Copyright (C) 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004, 2005,
4 # 2006, 2007 Free Software Foundation, Inc.
5 # This file is part of GNU Make.
7 # GNU Make is free software; you can redistribute it and/or modify it under
8 # the terms of the GNU General Public License as published by the Free Software
9 # Foundation; either version 3 of the License, or (at your option) any later
10 # version.
12 # GNU Make is distributed in the hope that it will be useful, but WITHOUT ANY
13 # WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
14 # FOR A PARTICULAR PURPOSE.  See the GNU General Public License for more
15 # details.
17 # You should have received a copy of the GNU General Public License along with
18 # this program.  If not, see <http://www.gnu.org/licenses/>.
20 # VMS extensions from GNU Make 3.60 imported by
21 #  Klaus Kämpf (kkaempf@rmi.de)
22 # Modified for version 3.78.1 by Hartmut.Becker@compaq.com.
23 # Modified for version 3.80 by zinser@decus.de
24 # Modified for version 3.81 by Hartmut Becker
26 CC = cc
27 CP = copy
29 %.obj: %.c
30         $(CC) $(CFLAGS)/obj=$@ $<
32 #       Makefile for GNU Make
35 ifeq ($(CC),cc)
36 CFLAGS = $(defines) /include=([],[.glob])/prefix=(all,except=(glob,globfree))/standard=relaxed/warn=(disable=questcompare)
37 else
38 CFLAGS = $(defines) /include=([],[.glob])
39 endif
40 #LDFLAGS = /deb
41 LDFLAGS =
43 ifeq ($(CC),cc)
44 defines = /define=("unlink=remove","HAVE_CONFIG_H","VMS","allocated_variable_expand_for_file=alloc_var_expand_for_file")
45 else
46 ifeq ($(ARCH),VAX)
47 defines = /define=("HAVE_CONFIG_H","GCC_IS_NATIVE","VAX")
48 else
49 defines = /define=("HAVE_CONFIG_H","GCC_IS_NATIVE")
50 endif
51 endif
53 LOAD_AVG = /define="NO_LDAV"
55 # If you don't want archive support, comment these out.
56 ARCHIVES = ,ar.obj,arscan.obj
57 ARCHIVES_SRC = ar.c arscan.c
59 # If your system needs extra libraries loaded in, define them here.
60 # System V probably need -lPW for alloca.
61 # if on vax, uncomment the following line
62 #LOADLIBES = ,c.opt/opt
63 ifeq ($(CC),cc)
64 #LOADLIBES =,sys$$library:vaxcrtl.olb/lib
65 CRT0 =
66 else
67 LOADLIBES =,gnu_cc_library:libgcc.olb/lib
68 endif
70 # If your system doesn't have alloca, or the one provided is bad,
71 # get it from the Emacs distribution and define these.
72 #ALLOCA = ,alloca.obj
73 #ALLOCASRC = alloca.c
75 # If there are remote execution facilities defined,
76 # enable them with switches here (see remote-*.c).
77 REMOTE =
79 # Any extra object files your system needs.
80 extras = ,signame.obj,remote-stub.obj,vmsfunctions.obj,vmsify.obj
81 #,directory.obj
82 # as an alternative:
83 glob = ,[.glob]glob.obj,[.glob]fnmatch.obj
84 getopt = ,getopt.obj,getopt1.obj
85 # Directory to install `make' in.
86 bindir = []
87 # Directory to install the man page in.
88 mandir = []
89 # Number to put on the man page filename.
90 manext = 1
92 objs = commands.obj,job.obj,dir.obj,file.obj,misc.obj,hash.obj,\
93        main.obj,read.obj,remake.obj,rule.obj,implicit.obj,\
94        default.obj,variable.obj,expand.obj,function.obj,strcache.obj,\
95        vpath.obj,version.obj$(ARCHIVES)$(ALLOCA)$(extras)$(getopt)$(glob)
96 srcs = commands.c job.c dir.c file.c misc.c  hash.c \
97         main.c read.c remake.c rule.c implicit.c \
98         default.c variable.c expand.c function.c strcache.c \
99         vpath.c version.c vmsfunctions.c vmsify.c $(ARCHIVES_SRC) $(ALLOCASRC) \
100         commands.h dep.h filedef.h job.h make.h rule.h variable.h
103 .PHONY: all doc
104 all: config.h make.exe
106 doc: make.info make.dvi
109 make.exe: $(objs)
110         $(LD)$(LDFLAGS)/exe=$@ $^$(LOADLIBES)$(CRT0)
112 .PHONY: clean realclean
113 clean:
114         $$ purge [...]
115         -$(RM) make.exe;,*.obj;
116         -$(RM) [.glob]*.obj;
118 # Automatically generated dependencies.
119 commands.obj: commands.c make.h dep.h commands.h filedef.h variable.h job.h
120 job.obj: job.c vmsjobs.c make.h commands.h job.h filedef.h variable.h
121 dir.obj: dir.c make.h
122 file.obj: file.c make.h commands.h dep.h filedef.h variable.h
123 misc.obj: misc.c make.h dep.h
124 hash.obj: hash.c make.h hash.h
125 strcache.obj: strcache.c make.h hash.h
126 main.obj: main.c make.h commands.h dep.h filedef.h variable.h job.h
127 read.obj: read.c make.h commands.h dep.h filedef.h variable.h
128 remake.obj: remake.c make.h commands.h job.h dep.h filedef.h
129 rule.obj: rule.c make.h commands.h dep.h filedef.h variable.h rule.h
130 implicit.obj: implicit.c make.h rule.h dep.h filedef.h
131 default.obj: default.c make.h rule.h dep.h filedef.h commands.h variable.h
132 variable.obj: variable.c make.h commands.h variable.h dep.h filedef.h
133 expand.obj: expand.c make.h commands.h filedef.h variable.h
134 function.obj: function.c make.h variable.h dep.h commands.h job.h
135 vpath.obj: vpath.c make.h filedef.h variable.h
136 version.obj: version.c config.h
137 arscan.obj: arscan.c
138 ar.obj: ar.c make.h filedef.h
139 signame.obj: signame.c
140 remote-stub.obj: remote-stub.c
141 [.glob]glob.obj: [.glob]glob.c
142 [.glob]fnmatch.obj: [.glob]fnmatch.c
143 getopt.obj: getopt.c
144 getopt1.obj: getopt1.c
145 vmsfunctions.obj: vmsfunctions.c make.h vmsdir.h
146 vmsify.obj: vmsify.c make.h
148 config.h: config.h-vms
149         $(CP) $< $@