home *** CD-ROM | disk | FTP | other *** search
/ Geek Gadgets 1 / ADE-1.bin / ade-dist / cvs-1.8.7-src.tgz / tar.out / fsf / cvs / windows-NT / Makefile.in < prev    next >
Makefile  |  1996-09-28  |  1KB  |  74 lines

  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.  
  5. srcdir     = @srcdir@
  6. top_srcdir = @top_srcdir@
  7. cvs_srcdir = @top_srcdir@/src
  8. VPATH      = @srcdir@
  9.  
  10. SHELL = /bin/sh
  11.  
  12. prefix = @prefix@
  13. exec_prefix = @exec_prefix@
  14.  
  15.  
  16. HEADERS = \
  17.   config.h \
  18.   ndir.h \
  19.   options.h \
  20.   pwd.h \
  21.   rcmd.h
  22. SOURCES = \
  23.   filesubr.c \
  24.   mkdir.c \
  25.   ndir.c \
  26.   pwd.c \
  27.   rcmd.c \
  28.   run.c \
  29.   startserver.c \
  30.   strippath.c \
  31.   stripslash.c \
  32.   waitpid.c \
  33.   win32.c
  34. DISTFILES = ${HEADERS} ${SOURCES} \
  35.   README ChangeLog Makefile.in .cvsignore
  36.  
  37. all:
  38.  
  39. .PHONY: all install uninstall
  40. all install uninstall:
  41.  
  42. installdirs:
  43. .PHONY: installdirs
  44.  
  45. .PHONY: tags TAGS
  46. tags TAGS:
  47.  
  48. .PHONY: ls
  49. ls:
  50.     @echo ${DISTFILES}
  51.  
  52. .PHONY: clean distclean realclean mostlyclean
  53. clean realclean mostlyclean:
  54.  
  55. distclean:
  56.     rm -f Makefile
  57.  
  58. .PHONY: lint
  59. lint:
  60.  
  61. .PHONY: dist-dir
  62. dist-dir:
  63.     mkdir ${DISTDIR}
  64.     for i in ${DISTFILES}; do \
  65.       ln $(srcdir)/$${i} ${DISTDIR}; \
  66.     done
  67.  
  68. clean:
  69.     @echo make clean does nothing in windows-NT subdir
  70.  
  71. subdir = windows-NT
  72. Makefile: ../config.status Makefile.in
  73.     cd .. && CONFIG_FILES=$(subdir)/$@ CONFIG_HEADERS= ./config.status
  74.