When I'm trying to compile zetsubou, it gives me this error....
I didn't make any modifications to the Makefile, so I think it's the problem.
Here's the MakeFile :
Code:
GENERICOBJECTS = main.o endian.o
MAINOBJECTS = tpl.o
OBJECTS = $(GENERICOBJECTS) $(MAINOBJECTS)
LIBS = -lgd
OUTPUT = zetsubou
main: $(OBJECTS)
ÂÂÂÂgcc -o $(OUTPUT) $(LIBS) $(OBJECTS)
clean:
ÂÂÂÂrm -f $(OUTPUT) $(OBJECTS)
Anyone who already compiled zetsubou can help me ?
Thanks !






