From 3bd383baf6a17e734329e1fc677c7e86283db772 Mon Sep 17 00:00:00 2001
From: Chris Xiong <chirs241097@gmail.com>
Date: Mon, 26 Oct 2015 22:52:36 +0800
Subject: 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.

---
 build | 42 ------------------------------------------
 1 file changed, 42 deletions(-)
 delete mode 100755 build

(limited to 'build')

diff --git a/build b/build
deleted file mode 100755
index dab46d9..0000000
--- a/build
+++ /dev/null
@@ -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
-- 
cgit v1.2.3