# The most simplistic Makefile

xxd: xxd.c
	$(CC) $(CFLAGS) -DUNIX xxd.c -o xxd

clean:
	rm -f xxd xxd.o
