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