#Makefile for sdk-tool

CC=gcc
FILE=sdk-tool

create:
	$(CC) $(FILE).c -o $(FILE)

clean:
	rm $(FILE)
