MakeFile?

Post your questions, suggestions and experiences regarding game design, integration of external libraries here. For irrEdit, irrXML and irrKlang, see the
ambiera forums
Post Reply
Iyad
Posts: 140
Joined: Sat Mar 07, 2009 1:18 am
Location: Montreal, Canada

MakeFile?

Post by Iyad »

Hi everyone,

Srry if this is a silly question, but, I only want to know how do i build a library using makefiles? I want to use TinyXML (cause IrrXMLReader have some problems reading XML written from IrrXMLWritter), and I really dont know how do i get .lib and .dll files. I only have code, documentation and this MakeFile.

Any help would be appriciated.
#include <Iyad.h>
Iyad
Posts: 140
Joined: Sat Mar 07, 2009 1:18 am
Location: Montreal, Canada

Post by Iyad »

Ok actually, i red that TinyXML should be directly integrated in the project, so the problem is partially solved, i still dont know what is the purpose of makefiles. What they are suposed to do?
#include <Iyad.h>
Acki
Posts: 3496
Joined: Tue Jun 29, 2004 12:04 am
Location: Nobody's Place (Venlo NL)
Contact:

Post by Acki »

makefiles are scripts for use with make.exe !!! ;)
for example you call "make makefile" in the console and then it'll compile the project...
but be sure that make.exe (or maybe mingw32-make.exe) can be found on your system (add the path to your system path)...
and of course you'll have to open the makefile (text editor) and check if all pathes are correct for your system first... :lol:
while(!asleep) sheep++;
IrrExtensions:Image
http://abusoft.g0dsoft.com
try Stendhal a MORPG written in Java
Iyad
Posts: 140
Joined: Sat Mar 07, 2009 1:18 am
Location: Montreal, Canada

Post by Iyad »

Thx Acki, this was really helpful.
#include <Iyad.h>
Post Reply