vote up 3 vote down star
1

For my C++ build process, I am using Bakefile, a nice little Makefile generator, which lets you specify your build targets in XML, and it can generate various Makefiles or project files from it. It works fine and I use it to generate the GNU autotools scripts.

Now I heard of Premake, which seems to have a similar functionality. You specify your targets in Lua, and it generates Makefiles accordingly.

Does anyone know the differences between Bakefile and Premake? Does anyone have experience with both? Premake seems more recent and with more active development?

The XML parser ticpp uses Premake, but it requires you to download premake before you build ticpp. Can't they just pre-generate Makefiles for various systems so you don't have to download and install premake first?

Note: I know there are various SO threads about what the best build tool is, and usually the answer is CMake, SCons or Jam. However, I am interested in something that my users won't have to download before they build my project.

flag

> However, I am interested in something that my users won't have to download before they build my project. Scons and Cmake (not sure about Jam) also generate Makefiles. – Amit Kumar Mar 26 at 16:25
But, do they generate the whole autotools mess? Just generating a Makefile is not enough. Also, I think with CMake and friends you can generate a Makefile for a certain system only if you are on such a system. – dehmann Mar 27 at 3:30
waf code.google.com/p/waf is designed to be small enough you add it to your ptoject so not a separate download. – Mark Sep 23 at 14:23

2 Answers

vote up 2 vote down

Yes, Premake does allow you to generate a Makefile (or Visual Studio solution, or...) which you can then distribute, if you want. Premake itself includes pre-generated makefiles in its source packages.

Downloading and running Premake on the target machine allows the makefile to be customized, either by automated analysis of the system, or manually via command-line flags. For some projects that's a worthwhile trade-off, but it isn't required.

link|flag
vote up 1 vote down

Not exactly an answer, but I whole-heartedly recommend premake4, it's fantastic.

link|flag

Your Answer

Get an OpenID
or
never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.