CC:=gcc
CFLAGS:=-I.
OUTDIR:=./

main: main.c
	$(CC) -o $(OUTDIR)/ravpower-mcu main.c

clean:
	rm ravpower-pmic
