News:

As usual while waiting for the next release - don't forget to check the nightly builds in the forum.

Main Menu

handling make-files

Started by MoonKid, September 19, 2007, 11:50:18 PM

Previous topic - Next topic

MoonKid

It is the first time I am interestet in makefiles.

1. Is there a way to import makefiles (nmake, gnumake, etc) to a cbp-file?

2. Is there a way to export a cbp-file to a special makefile-type (nmake, gnumake, etc)?


The current problem is that there is a project (7zip with LZMA en-/decoder, etc) that comes with MSVC projectfiles and nmake-makefiles. But my own project is build with mingw and that is why I need to build the 7zip-lib with mingw, too.

Alturin

You could always try Eranif's application, LiteEditor, which can be found here.
With it, you can then
Quote from: http://codelite.sourceforge.net/wiki/pmwiki.php?n=Main.LiteEditor
Automatically imports MSVC workspace/projects and converts them to GNU based makefile

And then the fact that LiteEditor is a
Quote from: http://codelite.sourceforge.net/wiki/pmwiki.php?n=Main.LiteEditor
Makefile based build system
Your project is exported to makefile format, which you can then use manually with MinGW, or ofcourse from within the program itself.

MoonKid

Quote from: Alturin on September 20, 2007, 12:31:51 AM
And then the fact that LiteEditor is a
Quote from: http://codelite.sourceforge.net/wiki/pmwiki.php?n=Main.LiteEditor
Makefile based build system
Your project is exported to makefile format, which you can then use manually with MinGW, or ofcourse from within the program itself.

I don't need a new IDE. LiteEditor doesn't help me to "import" a nmake-file as a project and "export" it as a gnumake-file. Thats what I need.