home *** CD-ROM | disk | FTP | other *** search
/ Usenet 1994 January / usenetsourcesnewsgroupsinfomagicjanuary1994.iso / sources / unix / volume15 / tpscript / part01 / Makefile next >
Encoding:
Makefile  |  1988-05-25  |  517 b   |  21 lines

  1.  
  2. # SYS should be one of AUSAM, BSD, SYSV, V7
  3. # This is only really important if VERBOSE (below) is 1.
  4. SYS=BSD
  5. # VERBOSE should be 1 to generate postscript code to echo stuff
  6. # back down the communication line. Otherwise 0.
  7. VERBOSE=0
  8. MAKEDEV=/usr/src/cmd/text/troff.d    # pathname relative to devalw
  9. CD=cd
  10. MAKE=make
  11. all: tpscript.d others
  12. MFLAGS=SYS=$(SYS) VERBOSE=$(VERBOSE)
  13.  
  14. tpscript.d:
  15.     $(CD) tpscript; $(MAKE) $(MFLAGS)
  16.     $(CD) tpscript/devalw; $(MAKE) MAKEDEV=$(MAKEDEV)
  17.  
  18. others:
  19.     $(CD) opscript; $(MAKE) $(MFLAGS)
  20.  
  21.