home *** CD-ROM | disk | FTP | other *** search
/ Source Code 1992 March / Source_Code_CD-ROM_Walnut_Creek_March_1992.iso / usenet / altsrcs / 2 / 2621 / Makefile < prev    next >
Encoding:
Makefile  |  1991-01-29  |  476 b   |  34 lines

  1. #
  2. #    @(#) Makefile    1.1 91/01/27 
  3. #
  4. #    Written 1991 by Christian Schlichtherle
  5. #            (chris@attron.ruhr.sub.org)
  6. #    No copyright until you remove this header. The author
  7. #    disclaims any warranty.
  8. #
  9. #    Makefile - Makefile for list(C).
  10. #
  11.  
  12. OWNER=chris
  13. GROUP=freak
  14. MODE=0755
  15. BIN=/u/bin
  16.  
  17. list: list.sh
  18.     cp $? $@
  19.     chmod $(MODE) $@
  20.  
  21. install: $(BIN)/list
  22.  
  23. $(BIN)/list: list
  24.     cp $? $@
  25.     chown $(OWNER) $@
  26.     chgrp $(GROUP) $@
  27.     chmod $(MODE) $@
  28.  
  29. uninstall:
  30.     rm -f $(BIN)/list
  31.  
  32. clean:
  33.     rm -f list
  34.