CC = oshcc
CFLAGS =

simple: simple.c
	$(CC) $(CFLAGS) simple.c -o simple $(LIB)

clean:
	/bin/rm -rf simple.o simple *.trc *.edf profile* MULT*
