home *** CD-ROM | disk | FTP | other *** search
/ rtsi.com / 2014.01.www.rtsi.com.tar / www.rtsi.com / OS9 / OSK / NETWORK / ISP / bind.4.8.3.lzh / BIND483 / DOC / BOG / Makefile < prev    next >
Makefile  |  1993-08-24  |  1KB  |  39 lines

  1. # Copyright (c) 1986, 1988 Regents of the University of California.
  2. # All rights reserved.
  3. #
  4. # Redistribution and use in source and binary forms are permitted
  5. # provided that this notice is preserved and that due credit is given
  6. # to the University of California at Berkeley. The name of the University
  7. # may not be used to endorse or promote products derived from this
  8. # software without specific prior written permission. This software
  9. # is provided ``as is'' without express or implied warranty.
  10. #
  11. #    @(#)Makefile    6.3 (Berkeley) 2/28/88
  12. #
  13. FILES=    00macs.me 00title.me intro.me build.me types.me\
  14.     setup.me files.me named.boot.primary\
  15.     named.boot.secondary named.boot.cache resolv.conf\
  16.     root.cache named.local ucbhosts ucbhosts.rev manage.me
  17. ME=    -me
  18. NROFF=    nroff -rb3
  19. PRINTER= -Pdp
  20. TBL=    dtbl $(PRINTER)
  21. TROFF= ditroff $(PRINTER)
  22.  
  23. troff: $(FILES)
  24.     $(TBL) $(FILES)| $(TROFF) $(ME) $(FLAGS)
  25.  
  26. nroff: $(FILES)
  27.     tbl $(FILES)| $(NROFF) $(ME) $(FLAGS) > file
  28.  
  29. cat: $(FILES)
  30.     @cat $(FILES)
  31.  
  32. clean:
  33.  
  34. spell: $(FILES)
  35.     @for i in $(FILES); do \
  36.         echo $$i; \
  37.         spell $$i | sort | comm -23 - spell.ok > $$i.spell; \
  38.     done
  39.