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 / macintosh / Makefile.in < prev    next >
Makefile  |  1996-09-28  |  1KB  |  80 lines

  1. #### Under MacOS and CodeWarrier, we use project files, 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.   mac_config.h \
  19.   options.h \
  20.   pwd.h \
  21.   maccvs.pch
  22.  
  23. SOURCES = \
  24.   ae_if.c \
  25.   filesubr.c \
  26.   mac_init.c \
  27.   macos_filesys.c \
  28.   pwd.c \
  29.   rcmd.c \
  30.   run.c \
  31.   server_if.c
  32.  
  33. DISTFILES = \
  34.   ${HEADERS} \
  35.   ${SOURCES} \
  36.   README.MacCVS \
  37.   ChangeLog \
  38.   Makefile.in \
  39.   services \
  40.   AE_example.pl \
  41.   maccvs.r \
  42.   MacCVS68k.sit.hqx \
  43.   MacCVSPPC.sit.hqx
  44.  
  45. all:
  46.  
  47. .PHONY: all install uninstall
  48. all install uninstall:
  49.  
  50. installdirs:
  51. .PHONY: installdirs
  52.  
  53. .PHONY: tags TAGS
  54. tags TAGS:
  55.  
  56. .PHONY: ls
  57. ls:
  58.     @echo ${DISTFILES}
  59.  
  60. .PHONY: clean distclean realclean mostlyclean
  61. clean distclean realclean mostlyclean:
  62.  
  63. .PHONY: lint
  64. lint:
  65.  
  66. .PHONY: dist-dir
  67. dist-dir:
  68.     mkdir ${DISTDIR}
  69.     for i in ${DISTFILES}; do \
  70.         ln $(srcdir)/$${i} ${DISTDIR}; \
  71.     done
  72.     ln Makefile ${DISTDIR}
  73.  
  74. clean:
  75.     @echo make clean does nothing in macintosh subdir
  76.  
  77. subdir = macintosh
  78. Makefile: ../config.status Makefile.in
  79.     cd .. && CONFIG_FILES=$(subdir)/$@ CONFIG_HEADERS= ./config.status
  80.