home *** CD-ROM | disk | FTP | other *** search
Makefile | 1988-09-22 | 796 b | 23 lines |
- # Copyright (c) 1988, The Trustees of the University of California.
- # Edward Moy, Workstation Software Support Group, Workstation Support Serices,
- # Information Systems and Technology.
- #
- # Permission is granted to any individual or institution to use, copy,
- # or redistribute this software so long as it is not sold for profit,
- # provided that this notice and the original copyright notices are
- # retained. The University of California makes no representations about the
- # suitability of this software for any purpose. It is provided "as is"
- # without express or implied warranty.
-
- CFLAGS = -O
- MACPS = macps.o macaux.o ucbwhich.o
- PREPFIX = prepfix.o macaux.o
-
- all : macps prepfix
-
- macps : $(MACPS)
- cc -o macps -s $(CFLAGS) $(MACPS)
-
- prepfix : $(PREPFIX)
- cc -o prepfix -s $(CFLAGS) $(PREPFIX)
-