diff options
author | Chris Xiong <chirs241097@gmail.com> | 2015-10-26 22:52:36 +0800 |
---|---|---|
committer | Chris Xiong <chirs241097@gmail.com> | 2015-10-26 22:52:36 +0800 |
commit | 3bd383baf6a17e734329e1fc677c7e86283db772 (patch) | |
tree | 69a9148087577f797624ceb9c71323a2563d6bb4 /build | |
parent | 543e4f570be9b279ba558ca61cc02cda251af384 (diff) | |
download | bullet-lab-remix-3bd383baf6a17e734329e1fc677c7e86283db772.tar.xz |
Added support for relative line numbers.
Added instructions for, brk and cont. (They are still untested...)
Parser code cleanup. Removed garbage output to stderr.
Reorganize the repository structure.
Updated BLR2 code move it into archive.
Added BLR1 files.
Diffstat (limited to 'build')
-rwxr-xr-x | build | 42 |
1 files changed, 0 insertions, 42 deletions
@@ -1,42 +0,0 @@ -#!/bin/bash -cd hge -############################################################################# -cd CxImage -echo Compiling CxImage... -g++ -c *.cpp -D_LINUX -ar rcs libCxImage.a *.o -rm *.o -cd .. -mv ./CxImage/libCxImage.a libCxImage.a -############################################################################# -cd ZLIB -echo Compiling zlib... -gcc -c *.c -ar rcs libz.a *.o -rm *.o -cd .. -mv ./ZLIB/libz.a libz.a -############################################################################# -echo Compiling libhge... -g++ -c *.cpp -I/usr/include/SDL/ -I../include -ar rcs libhge.a *.o -rm *.o -cd .. -mv ./hge/*.a ./ -############################################################################# -cd hgehelp -echo Compiling libhgehelp... -g++ -c *.cpp -I../include -ar rcs libhgehelp.a *.o -rm *.o -cd .. -mv ./hgehelp/libhgehelp.a libhgehelp.a -############################################################################# -echo Compiling the main executable... -g++ *.cpp -I/usr/include/freetype2 -I./include \ --lSDL -lvorbis -lvorbisfile -lopenal -ljpeg -lpng -lfreetype \ --Wl,libhgehelp.a,libhge.a,libCxImage.a,libz.a -o BulletLabRemixII -############################################################################# -rm *.a -strip BulletLabRemixII -cd ..
\ No newline at end of file |