home *** CD-ROM | disk | FTP | other *** search
Makefile | 1993-07-03 | 594 b | 30 lines |
- # Makefile
- # Michael S Zraly
- # mzraly@cs.umb.edu
- # 26 July 1992
-
- PROG= sftp
-
- BIN= /usr/local/bin
- MAN= /usr/local/man
-
- FILES= Makefile README $(PROG) $(PROG).1
-
- all: $(PROG).man $(PROG).1 $(PROG)
-
- install: all
- cp $(PROG) $(BIN) && chmod 755 $(BIN)/$(PROG)
- cp $(PROG).1 $(MAN)/man1/$(PROG).1 && chmod 644 $(MAN)/man1/$(PROG).1
- cp $(PROG).man $(MAN)/cat1/$(PROG).1 && chmod 644 $(MAN)/cat1/$(PROG).1
-
- clean:
- rm -f $(PROG).man $(PROG).tar.Z
-
- $(PROG).man: $(PROG).1
- nroff -man $(PROG).1 > $(PROG).man
-
- dist: $(PROG).tar.Z
-
- $(PROG).tar.Z: $(FILES)
- tar cvf - $(FILES) | compress > $(PROG).tar.Z
-