home *** CD-ROM | disk | FTP | other *** search
/ minnie.tuhs.org / unixen.tar / unixen / PDP-11 / Distributions / ucb / spencer_2bsd.tar.gz / 2bsd.tar / src / termlib / makefile < prev    next >
Makefile  |  1980-02-17  |  227b  |  14 lines

  1. CFLAGS=    -O
  2.  
  3. termlib.a: termcap.o tgoto.o tputs.o
  4.     ar cr termlib.a termcap.o tgoto.o tputs.o
  5.  
  6. clean:
  7.     -rm -f *.o
  8.     -rm -f termlib.a
  9.  
  10. install: termlib.a
  11.     cp termlib.a /usr/lib/libtermlib.a
  12.     cp termcap /etc
  13.     chdir tabset ; install
  14.