CFLAGS = -O -Wall

hexd:	main.o	hexd.o	hexout.o
	cc -o hexd main.o hexd.o hexout.o

clean:
	rm -f *.o core
