Updated from libc
[make.git] / readme.vms
blobf54be738d8bb97bf0c3883506ef37f8b59a5dbe0
1 This is the VMS port of GNU Make version 3.74.
3 It is based on the VMS port of GNU Make 3.60 by Mike Moretti.
5 This port was done by Klaus Kämpf (kkaempf@didymus.rmi.de)
7 To build Make, simply type @makefile.  This should compile all the
8 necessary files and link Make.
9 There is also a file called makefile.vms.  If you already have GNU
10 Make 3.74 built you can just use Make with this makefile to rebuild.
12 Here are some notes about GNU Make for VMS:
14 Libraries are not supported. They were in GNU Make 3.60 but somehow I didn't
15 care porting the code. If there is enough interest, I'll do it at some
16 later time.
18 The variable $^ separates files with commas instead of spaces (It's the
19 natural thing to do for VMS).
21 See defaults.c for VMS default suffixes and my definitions for default
22 rules and variables.
24 The shell function is not implemented yet.
26 Load average routines haven't been implemented for VMS yet.
28 The default include directory for including other makefiles is
29 SYS$SYSROOT:[SYSLIB] (I don't remember why I didn't just use
30 SYS$LIBRARY: instead; maybe it wouldn't work that way).
32 The default makefiles make looks for are: makefile.vms, gnumakefile, makefile.,
33 and gnumakefile. .
35 The stat() function and handling of time stamps in VMS is broken, so I
36 replaced it with a hack in vmsfunctions.c. I will provide a full rewrite
37 somewhere in the future. Be warned, the time resolution inside make is
38 less than what vms provides. This might be a problem on the faster Alphas.
40 You can use a : in a filename only if you preceed it with a backslash ('\').
41 E.g.- hobbes\:[bogas.files]
43 None of the stuff in vpath.c has been implemented yet.
45 Make ignores success, informational, or warning errors (-S-, -I-, or -W-).
46 But it will stop on -E- and -F- errors. (unless you do something to override
47 this in your makefile, or whatever).
49 Remote stuff isn't implemented yet.
51 Multiple line DCL commands, such as "if" statements, must be put inside
52 command files.  You can run a command file by using \@.
55 VMS changes made for 3.74.3
57 Lots of default settings are adapted for VMS. See default.c.
59 Long command lines are now converted to command files.
61 Comma (',') as a separator is now allowed. See makefile.vms for an example.