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