home *** CD-ROM | disk | FTP | other *** search
Makefile | 1989-12-29 | 2.4 KB | 74 lines |
- # Makefile for pep 1989 dec 28 [gh]
- #-----------------------------------------------------------------------------
- # Design:
- # This Makefile is customized to my working environment. It will proably
- # not work for others. It is included only to serve as a starting point.
- #-----------------------------------------------------------------------------
-
- it: unix
- mv pep xpep
-
- arc: crlf.tst notes.let pep.dok poster.txt
- arc -m pep crlf.tst notes.let pep.dok poster.txt
-
- pep.doc: Doc/pep.1l
- nroff -man -Tlpr Doc/pep.1l | pep > Doc/pep.doc
-
- manhc: Doc/pep.1l
- ptroff -man Doc/pep.1l
-
- pep: unix
-
- pep.arc: Makefile Makefile.dos Makevms.com \
- Doc/aales.meg Doc/aaread.me Doc/header.txt \
- Doc/hjelp.txt Doc/pep.1l Doc/pep.doc Doc/pepvms.txt \
- ansi.c bdmg.c main.c plain.c pep.h bdmg.h \
- Filters/ebc2ns7 Filters/ibm2iso Filters/ibm2mac \
- Filters/ibm2ro8 Filters/iso2ibm Filters/mac2ibm \
- Filters/ro82ibm
- \rm -f pep.arc
- arc -a pep Makefile Makefile.dos Makevms.com
- arc -m pep Doc/aales.meg Doc/aaread.me Doc/header.txt \
- Doc/hjelp.txt Doc/pep.1l Doc/pep.doc Doc/pepvms.txt \
- ansi.c bdmg.c main.c plain.c pep.h bdmg.h \
- Filters/ebc2ns7 Filters/ibm2iso Filters/ibm2mac \
- Filters/ibm2ro8 Filters/iso2ibm Filters/mac2ibm \
- Filters/ro82ibm
-
- pep.shr: Makefile Makefile.dos Makevms.com \
- Doc/aales.meg Doc/aaread.me Doc/header.txt \
- Doc/hjelp.txt Doc/pep.1l Doc/pep.doc Doc/pepvms.txt \
- ansi.c bdmg.c main.c plain.c pep.h bdmg.h \
- Filters/ebc2ns7 Filters/ibm2iso Filters/ibm2mac \
- Filters/ibm2ro8 Filters/iso2ibm Filters/mac2ibm \
- Filters/ro82ibm
- \rm -f pep.shr
- shar -a Makefile Makefile.dos Makevms.com \
- Doc/aales.meg Doc/aaread.me Doc/header.txt \
- Doc/hjelp.txt Doc/pep.1l Doc/pep.doc Doc/pepvms.txt \
- ansi.c bdmg.c main.c plain.c pep.h bdmg.h \
- Filters/ebc2ns7 Filters/ibm2iso Filters/ibm2mac \
- Filters/ibm2ro8 Filters/iso2ibm Filters/mac2ibm \
- Filters/ro82ibm \
- > pep.shr
-
- #---( compilations )----------------------------------------------------------
-
- unix: main.o ansi.o plain.o
- cc -o pep main.o ansi.o plain.o
-
-
- #---( objects )---------------------------------------------------------------
-
- main.o: main.c pep.h bdmg.h
- ansi.o: ansi.c pep.h
- plain.o: plain.c pep.h
-
-
- #---( housekeeping )----------------------------------------------------------
-
- clean:
- \rm -f *.o pep
-
- # EOF
-