#								SCOT makef
# macros defined in toplevel csound/Makefile
#	CFLAGS INCLUDE LIB DEST

T = ../..

OBJS =  main.o $T/scot.o

scots:	scot

scot:	$(OBJS)
	cc -o scot $(OBJS)

install:	scot
		-strip scot
		-rm -f $(DEST)/scot
		cp scot $(DEST)

clean:
		-rm scot *.o

rmbak:
		-rm *.bak *~
