Mon, 16 Jul 2012 04:33:09 +0300
Lifted the ';'-after-events rule, though it can still be present. C++ allows it for functions, so this feels like the best solution regarding consistency.. I'm not even sure am I going overboard with this kind of stuff
all: g++ -Wall -c -o scriptreader.o scriptreader.cxx g++ -Wall -c -o objwriter.o objwriter.cxx g++ -Wall -c -o str.o str.cxx g++ -Wall -c -o main.o main.cxx g++ -Wall -c -o parser.o parser.cxx g++ -Wall -c -o events.o events.cxx g++ -Wall -c -o commands.o commands.cxx g++ -Wall -c -o stringtable.o stringtable.cxx g++ -Wall -c -o variables.o variables.cxx g++ -Wall -o botc scriptreader.o objwriter.o str.o main.o parser.o events.o commands.o stringtable.o variables.o clean: rm -f *.o *~ botc