Makefile.in revision 1.1.1.7
1#### Under Windows NT and Microsoft Visual C++, we use cvsnt.mak, 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
15
16HEADERS = \
17  config.h \
18  ndir.h \
19  options.h \
20  pwd.h \
21  rcmd.h
22SOURCES = \
23  filesubr.c \
24  mkdir.c \
25  ndir.c \
26  pwd.c \
27  rcmd.c \
28  run.c \
29  startserver.c \
30  stripslash.c \
31  waitpid.c \
32  win32.c
33DISTFILES = ${HEADERS} ${SOURCES} \
34  README ChangeLog Makefile.in .cvsignore
35
36SUBDIRS=SCC
37
38all:
39
40.PHONY: all install uninstall
41all install uninstall:
42
43installdirs:
44.PHONY: installdirs
45
46.PHONY: tags TAGS
47tags TAGS:
48
49.PHONY: ls
50ls:
51	@echo ${DISTFILES}
52
53.PHONY: clean distclean realclean mostlyclean
54clean realclean mostlyclean:
55
56distclean:
57	rm -f Makefile
58
59.PHONY: lint
60lint:
61
62.PHONY: dist-dir
63dist-dir:
64	mkdir ${DISTDIR}
65	for i in ${DISTFILES}; do \
66	  ln $(srcdir)/$${i} ${DISTDIR}; \
67	done
68	for i in ${SUBDIRS}; do \
69	  cd $${i}; ${MAKE} dist-dir DISTDIR="../${DISTDIR}/$${i}"; \
70	done
71
72clean:
73	@echo make clean does nothing in windows-NT subdir
74
75subdir = windows-NT
76Makefile: ../config.status Makefile.in
77	cd .. && CONFIG_FILES=$(subdir)/$@ CONFIG_HEADERS= ./config.status
78