Sun, 12 Aug 2012 04:10:25 +0300
Added do-while loop support
0 | 1 | all: |
2 | g++ -Wall -c -o scriptreader.o scriptreader.cxx | |
3 | g++ -Wall -c -o objwriter.o objwriter.cxx | |
4 | g++ -Wall -c -o str.o str.cxx | |
5 | g++ -Wall -c -o main.o main.cxx | |
6 | g++ -Wall -c -o parser.o parser.cxx | |
2
bb2c45522eb6
Added event definitions
Teemu Piippo <crimsondusk64@gmail.com>
parents:
0
diff
changeset
|
7 | g++ -Wall -c -o events.o events.cxx |
6
0005527cad62
Command definitions are now read into memory.
Teemu Piippo <crimsondusk64@gmail.com>
parents:
2
diff
changeset
|
8 | g++ -Wall -c -o commands.o commands.cxx |
20
d7b13805d1e0
Added string table and support for string parameters in commands.
Teemu Piippo <crimsondusk64@gmail.com>
parents:
6
diff
changeset
|
9 | g++ -Wall -c -o stringtable.o stringtable.cxx |
22
b48e10ca8832
Added rudimentary global var support
Teemu Piippo <crimsondusk64@gmail.com>
parents:
20
diff
changeset
|
10 | g++ -Wall -c -o variables.o variables.cxx |
33
fd35f6cb5f28
Added a preprocessor with proper #include support. Macro support via #define is planned too. God, was it a B-I-T-C-H to get working right, though..
Teemu Piippo <crimsondusk64@gmail.com>
parents:
22
diff
changeset
|
11 | g++ -Wall -c -o preprocessor.o preprocessor.cxx |
fd35f6cb5f28
Added a preprocessor with proper #include support. Macro support via #define is planned too. God, was it a B-I-T-C-H to get working right, though..
Teemu Piippo <crimsondusk64@gmail.com>
parents:
22
diff
changeset
|
12 | g++ -Wall -o botc scriptreader.o objwriter.o str.o main.o parser.o events.o \ |
fd35f6cb5f28
Added a preprocessor with proper #include support. Macro support via #define is planned too. God, was it a B-I-T-C-H to get working right, though..
Teemu Piippo <crimsondusk64@gmail.com>
parents:
22
diff
changeset
|
13 | commands.o stringtable.o variables.o preprocessor.o |
0 | 14 | |
15 | clean: | |
16 | rm -f *.o *~ botc |