CC = gcc
PROG = sccw

$(PROG):
	$(CC) -O2 -Wall -o $(PROG) sccw.c AdLib.c -lm

install:
	strip $(PROG)
	chgrp root $(PROG)
	chown root $(PROG)
	chmod a+sx $(PROG)
clean:
	rm -f $(PROG) 
