OBJS= serialio.o ts850.o

CFLAGS= -Wall -ansi -pedantic

ts850: $(OBJS)
	cc -o ts850 $(OBJS)

clean:
	/bin/rm -f *.o ts850

