home *** CD-ROM | disk | FTP | other *** search
/ Garbo / Garbo.cdr / pc / source / pep21.arc / MAKEFILE.UNX < prev    next >
Text File  |  1989-12-29  |  2KB  |  74 lines

  1. # Makefile for pep   1989 dec 28 [gh]
  2. #-----------------------------------------------------------------------------
  3. # Design:
  4. #    This Makefile is customized to my working environment.  It will proably
  5. #    not work for others.  It is included only to serve as a starting point.
  6. #-----------------------------------------------------------------------------
  7.  
  8. it:        unix
  9.     mv pep xpep
  10.  
  11. arc:        crlf.tst notes.let pep.dok poster.txt
  12.     arc -m pep crlf.tst notes.let pep.dok poster.txt
  13.  
  14. pep.doc:    Doc/pep.1l
  15.     nroff -man -Tlpr Doc/pep.1l | pep > Doc/pep.doc
  16.  
  17. manhc:        Doc/pep.1l
  18.     ptroff -man Doc/pep.1l
  19.  
  20. pep:        unix
  21.  
  22. pep.arc:    Makefile Makefile.dos Makevms.com \
  23.         Doc/aales.meg Doc/aaread.me Doc/header.txt \
  24.         Doc/hjelp.txt Doc/pep.1l Doc/pep.doc Doc/pepvms.txt \
  25.         ansi.c bdmg.c main.c plain.c pep.h bdmg.h \
  26.         Filters/ebc2ns7 Filters/ibm2iso Filters/ibm2mac \
  27.         Filters/ibm2ro8 Filters/iso2ibm Filters/mac2ibm \
  28.         Filters/ro82ibm
  29.     \rm -f pep.arc
  30.     arc -a pep Makefile Makefile.dos Makevms.com
  31.     arc -m pep Doc/aales.meg Doc/aaread.me Doc/header.txt \
  32.         Doc/hjelp.txt Doc/pep.1l Doc/pep.doc Doc/pepvms.txt \
  33.         ansi.c bdmg.c main.c plain.c pep.h bdmg.h \
  34.         Filters/ebc2ns7 Filters/ibm2iso Filters/ibm2mac \
  35.         Filters/ibm2ro8 Filters/iso2ibm Filters/mac2ibm \
  36.         Filters/ro82ibm
  37.  
  38. pep.shr:    Makefile Makefile.dos Makevms.com \
  39.         Doc/aales.meg Doc/aaread.me Doc/header.txt \
  40.         Doc/hjelp.txt Doc/pep.1l Doc/pep.doc Doc/pepvms.txt \
  41.         ansi.c bdmg.c main.c plain.c pep.h bdmg.h \
  42.         Filters/ebc2ns7 Filters/ibm2iso Filters/ibm2mac \
  43.         Filters/ibm2ro8 Filters/iso2ibm Filters/mac2ibm \
  44.         Filters/ro82ibm
  45.     \rm -f pep.shr
  46.     shar -a Makefile Makefile.dos Makevms.com \
  47.         Doc/aales.meg Doc/aaread.me Doc/header.txt \
  48.         Doc/hjelp.txt Doc/pep.1l Doc/pep.doc Doc/pepvms.txt \
  49.         ansi.c bdmg.c main.c plain.c pep.h bdmg.h \
  50.         Filters/ebc2ns7 Filters/ibm2iso Filters/ibm2mac \
  51.         Filters/ibm2ro8 Filters/iso2ibm Filters/mac2ibm \
  52.         Filters/ro82ibm \
  53.         > pep.shr
  54.  
  55. #---( compilations )----------------------------------------------------------
  56.  
  57. unix:        main.o ansi.o plain.o
  58.     cc -o pep main.o ansi.o plain.o
  59.  
  60.  
  61. #---( objects )---------------------------------------------------------------
  62.  
  63. main.o:        main.c    pep.h bdmg.h
  64. ansi.o:        ansi.c    pep.h
  65. plain.o:    plain.c    pep.h
  66.  
  67.  
  68. #---( housekeeping )----------------------------------------------------------
  69.  
  70. clean:
  71.     \rm -f *.o pep
  72.  
  73. # EOF
  74.