home *** CD-ROM | disk | FTP | other *** search
Makefile | 1991-01-29 | 476 b | 34 lines |
- #
- # @(#) Makefile 1.1 91/01/27
- #
- # Written 1991 by Christian Schlichtherle
- # (chris@attron.ruhr.sub.org)
- # No copyright until you remove this header. The author
- # disclaims any warranty.
- #
- # Makefile - Makefile for list(C).
- #
-
- OWNER=chris
- GROUP=freak
- MODE=0755
- BIN=/u/bin
-
- list: list.sh
- cp $? $@
- chmod $(MODE) $@
-
- install: $(BIN)/list
-
- $(BIN)/list: list
- cp $? $@
- chown $(OWNER) $@
- chgrp $(GROUP) $@
- chmod $(MODE) $@
-
- uninstall:
- rm -f $(BIN)/list
-
- clean:
- rm -f list
-