G++ -Wall and Irrlicht.

If you are a new Irrlicht Engine user, and have a newbie-question, this is the forum for you. You may also post general programming questions here.
Post Reply
disanti
Posts: 367
Joined: Sat Jan 17, 2004 1:36 am
Location: California, US
Contact:

G++ -Wall and Irrlicht.

Post by disanti »

Irrlicht gives a LOT of warnings when the -Wall command is used to build my game. I don't have the -Wall tag ANYWHERE in my makefile and it is still including it. How do I fix this?

Code: Select all

CPP = g++
OPTS =  -I"../../include" -I"/usr/X11R6/include" -L"/usr/X11R6/lib" -L"../../lib/Linux" -lIrrlicht -lGL -lXxf86vm -lXext -lX11 -lz -ljpeg
FILES = main.cpp process.cpp

all:
	$(CPP) $(FILES) -o chemwar $(OPTS)

clean:
	rm chemwar
[disanti@localhost chemwar]$ make
g++ main.cpp process.cpp -o chemwar -I"../../include" -I"/usr/X11R6/include" -L"/usr/X11R6/lib" -L"../../lib/Linux" -lIrrlicht -lGL -lXxf86vm -lXext -lX11 -lz -ljpeg
________
Lamborghini Lma002
Post Reply