Is there a GNU Make-type program for the D programming language?

Or on Windows, I assume I can use a script package?

+6
makefile d
source share
3 answers

Make is an agnostic of the language: it works equally well (or poorly depending on your point of view) with any programming language.

+14
source share

I suggest you check out the rdmd utility, which is part of the standard dmd distribution. rdmd takes your main module and passes all the transitive dependencies on it.

+6
source share

The Digital Mars D compiler (which you can find here ) should have a make program that does what you need in DMD2\Windows\Bin .

If this is not the case, take a look at the C compiler - I am sure that at least one of them works with DMD.

0
source share

All Articles