home *** CD-ROM | disk | FTP | other *** search
/ Usenet 1994 January / usenetsourcesnewsgroupsinfomagicjanuary1994.iso / sources / unix / volume22 / multitee2.0 / Makefile < prev    next >
Encoding:
Makefile  |  1990-06-07  |  822 b   |  29 lines

  1. CC=cc
  2. CCOPTS=-O -UNOSIGINTERRUPT
  3. NROFFOPTS=-man
  4.  
  5. # -DNOSIGINTERRUPT if your machine does not have siginterrupt():
  6. #                  such machines do not support per-process non-blocking I/O
  7. # -DFDTABLESIZE=nn to override default of FD_SETSIZE
  8. # -DBUFINSIZE=nnnn to override default of 4096
  9. # -DMAXBUFOUTSIZE=nnnn to override the default default of 16384
  10.  
  11. default: all
  12.  
  13. all: multitee multitee.1
  14.  
  15. shar: multitee.shar
  16.  
  17. multitee: multitee.o Makefile
  18.     $(CC) $(CCOPTS) -o multitee multitee.o
  19.  
  20. multitee.o: multitee.c Makefile
  21.     $(CC) $(CCOPTS) -c multitee.o multitee.c
  22.  
  23. multitee.1: multitee.man Makefile
  24.     nroff $(NROFFOPTS) < multitee.man > multitee.1
  25.  
  26. multitee.shar: CHANGES README Makefile multitee.man multitee.c djberr.h
  27.     shar CHANGES README Makefile multitee.man multitee.c djberr.h > multitee.shar
  28.     chmod 400 multitee.shar
  29.