1 2 3 4 5 6 7
.PHONY: clean memch: memch.c $(CC) -D_DEFAULT_SOURCE -std=c99 -o memch memch.c `pkg-config --libs --cflags ncursesw` clean: rm -f memch