home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Spezial / SPEZIAL2_97.zip / SPEZIAL2_97.iso / ANWEND / EDITOR / NVI179B / NVI179B.ZIP / docs / USD.doc / exref / Makefile < prev    next >
Makefile  |  1996-10-10  |  262b  |  18 lines

  1. # @(#)Makefile    8.8 (Berkeley) 10/10/96
  2.  
  3. ROFF=    groff
  4. TBL=    tbl
  5.  
  6. all: exref.ps summary.ps
  7.  
  8. exref.ps: ex.rm
  9.     ${TBL} ex.rm | ${ROFF} -ms > $@
  10.     chmod 444 $@
  11.  
  12. summary.ps: ex.summary
  13.     ${TBL} ex.summary | ${ROFF} -ms > $@
  14.     chmod 444 $@
  15.  
  16. clean:
  17.     rm -f exref.ps summary.ps
  18.