CC=mipsel-linux-gcc
OBJ=buzzer_test

all:
	$(CC) -o $(OBJ) buzzer_test.c

