CC = arm-poky-linux-gnueabi-gcc
STRIP = arm-poky-linux-gnueabi-strip
#CC = gcc
EXEC = setuart-485

all: setuart-485
setuart-485: setuart-485.c
	$(CC) -o ${EXEC} setuart-485.c
	$(STRIP) ${EXEC}

clean:
	rm -f ${EXEC}
