Makefile

changeset 71
11f23fabf8a6
parent 70
fc257920ac00
child 72
03e4d9db3fd9
equal deleted inserted replaced
70:fc257920ac00 71:11f23fabf8a6
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
7 g++ -Wall -c -o events.o events.cxx
8 g++ -Wall -c -o commands.o commands.cxx
9 g++ -Wall -c -o stringtable.o stringtable.cxx
10 g++ -Wall -c -o variables.o variables.cxx
11 g++ -Wall -c -o preprocessor.o preprocessor.cxx
12 g++ -Wall -o botc scriptreader.o objwriter.o str.o main.o parser.o events.o \
13 commands.o stringtable.o variables.o preprocessor.o
14
15 clean:
16 rm -f *.o *~ botc

mercurial