# Makefile obj2hex

obj2hex: obj2hex.c
	gcc -O2 -Wall -o obj2hex obj2hex.c

deccrc: deccrc.c
	gcc -O2 -Wall -o deccrc deccrc.c

hex2oct: hex2oct.c
	gcc -O2 -Wall -o hex2oct hex2oct.c
