home *** CD-ROM | disk | FTP | other *** search
/ The Fatted Calf / The Fatted Calf.iso / Unix / Utilities / Macps / Source / Makefile < prev    next >
Encoding:
Makefile  |  1994-05-09  |  1.1 KB  |  33 lines

  1. # Copyright (c) 1988, The Regents 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. # SCCSid = "@(#)Makefile    2.2 10/24/89"
  13. #
  14. # For System V, include -DSYSV in CFLAGS below.
  15. # To specify a fixed path for macps.config, include -DCONFIGDIR=\"path\"
  16. # in CFLAGS below (path is the full pathname of the directory).
  17. # To do save/restore context, include -DSAVE in CFLAGS below.
  18. #
  19. CFLAGS = -O `allArchs`
  20. MACPS = macps.o macaux.o ucbwhich.o
  21. PREPFIX = prepfix.o macaux.o
  22.  
  23. all : macps prepfix
  24.  
  25. macps : $(MACPS)
  26.     cc -o macps $(CFLAGS) $(MACPS)
  27.  
  28. prepfix : $(PREPFIX)
  29.     cc -o prepfix $(CFLAGS) $(PREPFIX)
  30.  
  31. clean :
  32.     /bin/rm -f *.o macps prepfix
  33.