home *** CD-ROM | disk | FTP | other *** search
/ OpenStep 4.2 / Openstep-4.2-Intel-User.iso / NextLibrary / PrivateFrameworks / Uucp.framework / Versions / A / Resources / contrib / Makefile.xchat < prev    next >
Makefile  |  1992-09-06  |  443b  |  32 lines

  1. #
  2. # Makefile for xchat 1.1
  3. #
  4. # Bob Denny - Tue Sep  1 15:58:22 1992
  5. #
  6. CC=cc
  7. SHELL=/bin/sh
  8. BIN=/usr/local/lib/uucp
  9. PROGS=xchat
  10.  
  11. #-----------
  12.  
  13. all: $(PROGS)
  14.  
  15. install: $(PROGS)
  16.     @for i in $(PROGS) ; do \
  17.         echo "Install $$i into $(BIN)..." ; \
  18.         cp $$i $(BIN) ; \
  19.         echo "Set ownership and protection..." ; \
  20.         /bin/chmod 0555 $(BIN)/$$i ; \
  21.         /bin/chown bin $(BIN)/$$i ; \
  22.         /bin/chgrp bin $(BIN)/$$i ; \
  23.     done
  24.  
  25. clean:
  26.     rm -f $(PROGS) core
  27.  
  28.  
  29.  
  30.  
  31.  
  32.