Makefile.in revision 1.1.1.1
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
5HEADERS = \
6  alloca.h \
7  config.h \
8  ndir.h \
9  options.h \
10  pwd.h \
11  rcmd.h
12SOURCES = \
13  filesubr.c \
14  mkdir.c \
15  ndir.c \
16  pwd.c \
17  rcmd.c \
18  run.c \
19  startserver.c \
20  strippath.c \
21  stripslash.c \
22  waitpid.c \
23  win32.c
24DISTFILES = ${HEADERS} ${SOURCES} \
25  README ChangeLog Makefile.in .cvsignore
26
27all:
28
29.PHONY: all install uninstall
30all install uninstall:
31
32.PHONY: tags TAGS
33tags TAGS:
34
35.PHONY: ls
36ls:
37	@echo ${DISTFILES}
38
39.PHONY: clean distclean realclean mostlyclean
40clean distclean realclean mostlyclean:
41
42.PHONY: lint
43lint:
44
45.PHONY: dist-dir
46dist-dir:
47	mkdir ${DISTDIR}
48	ln ${DISTFILES} ${DISTDIR}
49