blob: d725a72625fea792ea5aa8d823abf5ffd6e61f0d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
|
#### Under VMS, we use *.COM to build, not
#### this makefile. However, we need this file in order for 'make
#### dist' to work properly on Unix machines.
srcdir = @srcdir@
top_srcdir = @top_srcdir@
cvs_srcdir = @top_srcdir@/src
VPATH = @srcdir@
SHELL = /bin/sh
prefix = @prefix@
exec_prefix = @exec_prefix@
DISTFILES = \
ChangeLog \
Makefile.in \
build_vms.com \
config.h \
dir.h \
filesubr.c \
filutils.c \
filutils.h \
getpass.c \
getwd.c \
misc.c \
misc.h \
ndir.c \
ndir.h \
options.h \
pathnames.h \
pc.c \
pipe.c \
pipe.h \
piped_child.c \
pwd.c \
pwd.h \
rcmd.c \
readlink.c \
rmdir.c \
startserver.c \
stat.c \
unlink.c \
utime.c \
vms-types.h \
vms.h \
vmsmunch.c \
vmsmunch.h \
vmsmunch_private.h \
waitpid.c
all:
.PHONY: all install uninstall
all install uninstall:
installdirs:
.PHONY: installdirs
.PHONY: tags TAGS
tags TAGS:
.PHONY: ls
ls:
@echo ${DISTFILES}
.PHONY: clean distclean realclean mostlyclean
clean realclean mostlyclean:
.PHONY: lint
lint:
.PHONY: dist-dir
dist-dir:
mkdir ${DISTDIR}
for i in ${DISTFILES}; do \
ln $(srcdir)/$${i} ${DISTDIR}; \
done
clean:
@echo make clean does nothing in vms subdir
distclean:
rm -f Makefile
subdir = vms
Makefile: ../config.status Makefile.in
cd .. && CONFIG_FILES=$(subdir)/$@ CONFIG_HEADERS= ./config.status
|