Makefile (99B)
1CFLAGS = -g 2LDLIBS = -lm -lncurses 3 4.PHONY: all clean 5 6all: main 7 8clean: 9 rm -f main 10 11main: main.c