CC =		gcc -fstrength-reduce
CFLAGS =	-O -I/usr/sys
LDLAGS =	-s

maxvolume: maxvolume.c libst.h libst.o
	$(CC) $(CFLAGS) -I/usr/demo/SOUND $(LDFLAGS) $@.c libst.o -lm -o $@

libst.o:	libst.c libst.h
	$(CC) $(CFLAGS) -c libst.c

clean:
	rm -f *.o

