3Dengine (3Deng for Linux) Author: Chris Anderson BUILD INSTRUCTIONS Decompress a gzipped archive... extract(x), unzip(z), with verbose(v) ouput, file(f) matching 3Deng*.tar.gz: > tar xzvf 3Deng*.tar.gz Change to the base 3Dengine directory: > cd 3Dengine Remove old executables and objects: > make clean Compile code: > make If no errors occur during the make, a '3Deng' executable is created. CHANGE APPLICATION The main application code is pointed to by src/main.cpp. It is a symbolic link: main.cpp -> ../app_src/cave.cpp To change which application is compiled, change main.cpp: > cd src > ln -sf ../app_src/another_app.cpp main.cpp > cd .. Then recompile: > make clean > make