all: tar2raw.tos raw2tar.tos unixflop.prg	

tar2raw.tos: tar2raw.c
	$(CC) -o tar2raw.tos tar2raw.c

raw2tar.tos: raw2tar.c
	$(CC)  -o raw2tar.tos raw2tar.c

unixflop.prg: unixflop.c
	$(CC) -o unixflop.prg unixflop.c

