build: hexdump hex2bin

hexdump:
	$(CC) $(CFLAGS) hexdump.c -o hexdump
hex2bin:
	$(CC) $(CFLAGS) hex2bin.c -o hex2bin
clean:
	rm -f hexdump hex2bin
