#
# Makefile for sash
#
CC= bcc
CFLAGS = 
LDFLAGS = 

BINDIR = /bin
MANDIR = /usr/man/man1


PRGS = chgrp chmod chown cmp cp dd echo ed grep kill \
	ln ls mkdir mknod more mount mv printenv pwd \
	rm rmdir setenv sync tar touch umount



all:	$(PRGS)

clean:
	rm -f $(PRGS)

install: $(PRGS)
	cp $(PRGS) $(BINDIR)/

$(PRGS):