# The most simplistic Makefile

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

clean:
	rm -f $(XXDNAME) xxd.o
