You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
678 B
678 B
A basic starting point for an ncurses C99 program.
Build
make
build/debug/acro
Make
make debug
if you make some mistake in the code, it's a lot easier to catch it when building as debug it also builds the debug symbols into the binary, so you can use a c/c++ debugger (like gdb or lldb) to step through the program and see the source code as it executesmake release
will turn most optimizations on and strip out all of the unnecessary stuff which is the one you'd usually use for real or for giving to other peoplemake clean
to blow away the build/ directorymake debug_cli
will make onlyorca
.make debug_tui
will make onlyorca_tui
.