Sophie

Sophie

distrib > Mandriva > 2010.0 > x86_64 > media > main-release > by-pkgid > 87ddfb0a3824011d7784bd727e8047bc > files > 34

uucp-1.07-8mdv2010.0.x86_64.rpm

#
# Makefile for xchat 1.1
#
# Bob Denny - Tue Sep  1 15:58:22 1992
#
CC=cc
SHELL=/bin/sh
BIN=/usr/local/lib/uucp
PROGS=xchat

#-----------

all: $(PROGS)

install: $(PROGS)
	@for i in $(PROGS) ; do \
		echo "Install $$i into $(BIN)..." ; \
		cp $$i $(BIN) ; \
		echo "Set ownership and protection..." ; \
		/bin/chmod 0555 $(BIN)/$$i ; \
		/bin/chown bin $(BIN)/$$i ; \
		/bin/chgrp bin $(BIN)/$$i ; \
	done

clean:
	rm -f $(PROGS) core