home *** CD-ROM | disk | FTP | other *** search
/ The World of Computer Software / World_Of_Computer_Software-02-385-Vol-1of3.iso / c / condor40.zip / CONDOR / doc / tech / Makefile < prev    next >
Makefile  |  1989-10-16  |  2KB  |  47 lines

  1. # Copyright 1986, 1987, 1988, 1989 University of Wisconsin
  2. # Permission to use, copy, modify, and distribute this software and its
  3. # documentation for any purpose and without fee is hereby granted,
  4. # provided that the above copyright notice appear in all copies and that
  5. # both that copyright notice and this permission notice appear in
  6. # supporting documentation, and that the name of the University of
  7. # Wisconsin not be used in advertising or publicity pertaining to
  8. # distribution of the software without specific, written prior
  9. # permission.  The University of Wisconsin makes no representations about
  10. # the suitability of this software for any purpose.  It is provided "as
  11. # is" without express or implied warranty.
  12. # THE UNIVERSITY OF WISCONSIN DISCLAIMS ALL WARRANTIES WITH REGARD TO
  13. # THIS SOFTWARE, INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND
  14. # FITNESS. IN NO EVENT SHALL THE UNIVERSITY OF WISCONSIN  BE LIABLE FOR
  15. # ANY SPECIAL, INDIRECT OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
  16. # WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
  17. # ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
  18. # OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
  19. # Authors:  Allan Bricker and Michael J. Litzkow,
  20. #              University of Wisconsin, Computer Sciences Dept.
  21.  
  22. SRC =    01_syscall_review.grn \
  23.         02_syscall_remote.grn \
  24.         03_checkpoint.grn \
  25.         04_control_A.grn \
  26.         05_control_B.grn \
  27.         06_control_C.grn \
  28.         tech.me
  29.  
  30. #
  31. # Save the ".grn" file for folks who don't have gremlin.
  32. #
  33. tech.grn: $(SRC)
  34.     grn -P3a tech.me > tech.grn
  35.  
  36. tech.proof: tech.grn
  37.     tbl tech.grn | ditroff -P3a -me -t > tech.xpr
  38.     xproof tech.xpr
  39.  
  40. tech.print: tech.grn
  41.     tbl tech.grn | ditroff -P3a -me
  42.