2016-12-26 12:24:17 +01:00
|
|
|
# Roofus.c
|
|
|
|
|
2016-12-22 11:55:29 +01:00
|
|
|
Clear the table
|
2016-12-26 15:03:34 +01:00
|
|
|
|
|
|
|
# How to compile
|
|
|
|
|
|
|
|
Current version requires ncures (checkout the no-ncurses branch with
|
|
|
|
`git checkout no-ncurses`
|
|
|
|
if you don't want it).
|
|
|
|
|
|
|
|
Add the path to your LD_LIBRARY_PATH and then compile with the flag -lncurses
|
|
|
|
|
|
|
|
ubuntu example:
|
|
|
|
|
|
|
|
(as root)
|
|
|
|
apt-get install ncurses-dev
|
|
|
|
|
|
|
|
(compile)
|
|
|
|
`gcc ./Roofus.c -o roofus -lncurses`
|