all: tx rx tx_fd rx_fd

tx: tx.o
	cc tx.o -o tx

rx:	rx.o
	cc rx.o -o rx

tx_fd: tx_fd.o
	cc tx_fd.o -o tx_fd

rx_fd: rx_fd.o
	cc rx_fd.o -o rx_fd

clean:
	rm -f *.o
	rm -f tx
	rm -f rx
	rm -f tx_fd
	rm -f rx_fd

