blob: f901edfe4e433d8e02abe849f5292c8cdc6c33d8 (
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
|
#### Under Windows NT and Microsoft Visual C++, we use cvsnt.mak, 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@
HEADERS = \
config.h \
ndir.h \
options.h \
pwd.h \
rcmd.h
SOURCES = \
filesubr.c \
mkdir.c \
ndir.c \
pwd.c \
rcmd.c \
run.c \
sockerror.c \
startserver.c \
stripslash.c \
waitpid.c \
win32.c
DISTFILES = ${HEADERS} ${SOURCES} \
README ChangeLog Makefile.in .cvsignore
SUBDIRS=SCC
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:
distclean:
rm -f Makefile
.PHONY: lint
lint:
.PHONY: dist-dir
dist-dir:
mkdir ${DISTDIR}
for i in ${DISTFILES}; do \
ln $(srcdir)/$${i} ${DISTDIR}; \
done
for i in ${SUBDIRS}; do \
cd $${i}; ${MAKE} dist-dir DISTDIR="../${DISTDIR}/$${i}"; \
done
clean:
@echo make clean does nothing in windows-NT subdir
subdir = windows-NT
Makefile: ../config.status Makefile.in
cd .. && CONFIG_FILES=$(subdir)/$@ CONFIG_HEADERS= ./config.status
|