Makefile

Wed, 19 Dec 2012 22:01:42 +0200

author
Teemu Piippo <crimsondusk64@gmail.com>
date
Wed, 19 Dec 2012 22:01:42 +0200
changeset 69
29a3e669d648
parent 33
fd35f6cb5f28
permissions
-rw-r--r--

So it turns out that the functions I thought were taking float are actually taking int. So, with the only reason for float removed, the float type is removed as well. I'd rather have fixed point anyway.

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 -c -o preprocessor.o preprocessor.cxx
	g++ -Wall -o botc scriptreader.o objwriter.o str.o main.o parser.o events.o \
		commands.o stringtable.o variables.o preprocessor.o

clean:
	rm -f *.o *~ botc

mercurial