home *** CD-ROM | disk | FTP | other *** search
/ Carousel Volume 2 #1 / carousel.iso / mactosh / unix / macps_pr.hqx / Makefile < prev    next >
Encoding:
Makefile  |  1988-09-22  |  796 b   |  23 lines

  1. # Copyright (c) 1988, The Trustees of the University of California.
  2. # Edward Moy, Workstation Software Support Group, Workstation Support Serices,
  3. # Information Systems and Technology.
  4. #
  5. # Permission is granted to any individual or institution to use, copy,
  6. # or redistribute this software so long as it is not sold for profit,
  7. # provided that this notice and the original copyright notices are
  8. # retained.  The University of California makes no representations about the
  9. # suitability of this software for any purpose.  It is provided "as is"
  10. # without express or implied warranty.
  11.  
  12. CFLAGS = -O
  13. MACPS = macps.o macaux.o ucbwhich.o
  14. PREPFIX = prepfix.o macaux.o
  15.  
  16. all : macps prepfix
  17.  
  18. macps : $(MACPS)
  19.     cc -o macps -s $(CFLAGS) $(MACPS)
  20.  
  21. prepfix : $(PREPFIX)
  22.     cc -o prepfix -s $(CFLAGS) $(PREPFIX)
  23.