Sat, 14 Jul 2012 20:35:50 +0300
Added string table and support for string parameters in commands.
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 |
d7b13805d1e0
Added string table and support for string parameters in commands.
Teemu Piippo <crimsondusk64@gmail.com>
parents:
6
diff
changeset
|
10 | g++ -Wall -o botc scriptreader.o objwriter.o str.o main.o parser.o events.o commands.o stringtable.o |
0 | 11 | |
12 | clean: | |
13 | rm -f *.o *~ botc |