Aug 27, 2013 at 5:09pm
You run make
without arguments. The makefile has instructions for make.
make will look for GNUmakefile, Makefile then makefile in that order. So it'll find your makefile.
If you want to see what it would do, without actually executing the commands, run:
make -n
If you want for force a full rebuild, run:
make -B
If you want to force a debug build, run:
make CFLAGS=-g -B
Last edited on Aug 27, 2013 at 10:14pm
Aug 27, 2013 at 9:33pm
Ah. Ok, I will do that then. Thank you for your help! :)
EDIT1: I need to have it use Ncurses. It won't compile with the library... I added -lncurses
after -Wall
and it still won't work.
Thanks for your time.
Last edited on Aug 27, 2013 at 9:37pm