1# The most simplistic Makefile
2
3xxd: xxd.c
4	$(CC) $(CFLAGS) $(LDFLAGS) -DUNIX -o xxd xxd.c
5
6clean:
7	rm -f xxd xxd.o
8