summaryrefslogtreecommitdiffstats
path: root/src/xxd/Makefile
blob: d08af7aa0167f5eb0ea93c3eb3d7841a6fad3c56 (plain)
1
2
3
4
5
6
7
# The most simplistic Makefile

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

clean:
	rm -f xxd xxd.o