CC=gcc
CCOPT=-Wall

all: hex2bin

hex2bin: hex2bin.c
	$(CC) $(CCOPT) -o hex2bin hex2bin.c

clean:
	rm -f hex2bin
