xref: /vim-8.2.3635/src/xxd/Makefile (revision 071d4279)
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