CC = gcc
CFLAGS = -O3

all : dtsx xymodem

ds : ds.o hexdump.o

dtsx : dtsx.o hexdump.o

xymodem : xymodem.o hexdump.o

clean :
	rm -f dtsx ds xymodem dtsx.o ds.o xymodem.o hexdump.o
