CC = arm-poky-linux-gnueabi-gcc
STRIP = arm-poky-linux-gnueabi-strip


all:	getmac
getmac:	getmac.c
	${CC} -o getmac getmac.c
	${STRIP} getmac

clean:
	rm -f getmac getmac.o
