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