CC     = gcc -Wall -static -I../common

all :   serial.o

clean :
	rm *.o

serial.o : serial.c serial.h
	${CC} -c -o serial serial.c
