all: asc2bin bin2asc showpreamble

showpreamble: showpreamble.c 
	gcc -O showpreamble.c -o showpreamble

asc2bin: asc2bin.c
	gcc -O asc2bin.c -o asc2bin 

bin2asc: bin2asc.c
	gcc -O bin2asc.c -o bin2asc

clean:
	rm -f asc2bin bin2asc showpreamble
