home *** CD-ROM | disk | FTP | other *** search
/ Source Code 1992 March / Source_Code_CD-ROM_Walnut_Creek_March_1992.iso / usenet / altsrcs / 1 / 1621 / Makefile < prev    next >
Encoding:
Makefile  |  1990-12-28  |  3.4 KB  |  70 lines

  1. CC=cc
  2. CCOPTS=-O2 -s
  3.  
  4. NROFF=nroff
  5. NROFFOPTS=-man
  6.  
  7. default: all
  8.  
  9. all: pty pty.man
  10.  
  11. shar: pty.shar
  12.  
  13. pty: pty.o sigler.o master.o slave.o err.o tty.o texts.o sig.o globals.o logs.o sock.o misc.o Makefile
  14.     cc $(CCOPTS) -o pty texts.o globals.o pty.o sigler.o master.o slave.o err.o tty.o sig.o logs.o sock.o misc.o
  15.  
  16. pty.o: pty.c pty.h getopt.h sigler.h master.h slave.h err.h tty.h config.h texts.h sig.h logs.h file.h misc.h Makefile
  17.     cc $(CCOPTS) -c pty.c
  18.  
  19. sigler.o: sigler.c pty.h sigler.h config.h sig.h sock.h file.h err.h misc.h Makefile
  20.     cc $(CCOPTS) -c sigler.c
  21.  
  22. master.o: master.c pty.h master.h err.h config.h sig.h tty.h file.h logs.h sock.h misc.h Makefile
  23.     cc $(CCOPTS) -c master.c
  24.  
  25. slave.o: slave.c pty.h tty.h slave.h err.h config.h sig.h file.h logs.h Makefile
  26.     cc $(CCOPTS) -c slave.c
  27.  
  28. err.o: err.c err.h pty.h config.h Makefile
  29.     cc $(CCOPTS) -c err.c
  30.  
  31. tty.o: tty.c tty.h err.h config.h file.h Makefile
  32.     cc $(CCOPTS) -c tty.c
  33.  
  34. sig.o: sig.c sig.h config.h Makefile
  35.     cc $(CCOPTS) -c sig.c
  36.  
  37. texts.o: texts.c texts.h config.h Makefile
  38.     cc $(CCOPTS) -c texts.c
  39.  
  40. globals.o: globals.c config.h pty.h tty.h Makefile
  41.     cc $(CCOPTS) -c globals.c
  42.  
  43. logs.o: logs.c config.h pty.h file.h Makefile
  44.     cc $(CCOPTS) -c logs.c
  45.  
  46. sock.o: sock.c config.h sock.h tty.h err.h Makefile
  47.     cc $(CCOPTS) -c sock.c
  48.  
  49. misc.o: misc.c config.h pty.h misc.h Makefile
  50.     cc $(CCOPTS) -c misc.c
  51.  
  52. pty.man: pty.1 Makefile
  53.     nroff $(NROFFOPTS) < pty.1 > pty.man
  54.  
  55. pty.shar: CHANGES README INSTALL TESTS Makefile pty.1 config.h pty.h sigler.h master.h slave.h err.h tty.h getopt.h texts.h sig.h logs.h file.h file.h.old file.h.new sock.h misc.h pty.c sigler.c master.c slave.c err.c tty.c texts.c sig.c globals.c logs.c sock.c misc.c patch patch/README patch/TELNET.FTP patch/Makefile patch/telnetd.patch patch/igntt.c util util/Makefile util/biff.1 util/biff.c util/condom util/condom.1 util/disconnect.1 util/disconnect.c util/excloff.1 util/excloff.c util/exclon.1 util/ex
  56.  
  57.  
  58.  
  59. clon.c util/lock.1 util/lock.c util/mesg.1 util/mesg.c util/reconnect.1 util/reconnect.c util/script util/script.1 util/script.tidy util/script.tidy.1 util/sess util/sess.1 util/sesskill.1 util/sesskill.c util/sesslist.1 util/sesslist.c util/sessname.1 util/sessname.c util/sessuser.1 util/sessuser.c util/sessutil.c util/sessutil.h util/tiocsti.1 util/tiocsti.c util/tty.1 util/tty.c util/u.1 util/u.c util/wall.1 util/wall.c util/who.1 util/who.c util/write.1 util/write.c util/xsessutil.c
  60.     shar CHANGES README INSTALL TESTS Makefile pty.1 config.h pty.h sigler.h master.h slave.h err.h tty.h getopt.h texts.h sig.h logs.h file.h file.h.old file.h.new sock.h misc.h pty.c sigler.c master.c slave.c err.c tty.c texts.c sig.c globals.c logs.c sock.c misc.c patch patch/README patch/TELNET.FTP patch/Makefile patch/telnetd.patch patch/igntt.c util util/Makefile util/biff.1 util/biff.c util/condom util/condom.1 util/disconnect.1 util/disconnect.c util/excloff.1 util/excloff.c util/exclon.1 util/exclon
  61.  
  62.  
  63.  
  64. c util/lock.1 util/lock.c util/mesg.1 util/mesg.c util/reconnect.1 util/reconnect.c util/script util/script.1 util/script.tidy util/script.tidy.1 util/sess util/sess.1 util/sesskill.1 util/sesskill.c util/sesslist.1 util/sesslist.c util/sessname.1 util/sessname.c util/sessuser.1 util/sessuser.c util/sessutil.c util/sessutil.h util/tiocsti.1 util/tiocsti.c util/tty.1 util/tty.c util/u.1 util/u.c util/wall.1 util/wall.c util/who.1 util/who.c util/write.1 util/write.c util/xsessutil.c > pty.shar
  65.     chmod 400 pty.shar
  66.  
  67. pty.h: tty.h
  68. sig.h: config.h
  69. tty.h: config.h
  70.