Thread overview
Template makefile for your D project
Dec 11, 2011
bioinfornatics
Dec 11, 2011
Mike Wey
Dec 12, 2011
bioinfornatics
December 11, 2011
With Dav1d help we have have do a build system using make. project is here: https://github.com/bioinfornatics/MakefileForD

Any feedback are welcome

this build system support ldc, gdc, dmd
generate tag for geany
.pc file for pkg-config
Show more more in README

Is very easy to use it just set some var and it is done

regards

December 11, 2011
On 12/11/2011 01:35 AM, bioinfornatics wrote:
> With Dav1d help we have have do a build system using make.
> project is here: https://github.com/bioinfornatics/MakefileForD
>
> Any feedback are welcome
>
> this build system support ldc, gdc, dmd
> generate tag for geany
> .pc file for pkg-config
> Show more more in README
>
> Is very easy to use it just set some var and it is done
>
> regards
>

Looks good, but usage of the DFLAGS variable might shadow the DFLAGS environment variable, witch some people use instead of the configuration file.

I've been using DCFLAGS as the variable name sine the problem was reported for the GtkD MakeFile, See: http://www.dsource.org/projects/gtkd/ticket/90

-- 
Mike Wey
December 12, 2011
Le dimanche 11 décembre 2011 à 15:07 +0100, Mike Wey a écrit :
> On 12/11/2011 01:35 AM, bioinfornatics wrote:
> > With Dav1d help we have have do a build system using make. project is here: https://github.com/bioinfornatics/MakefileForD
> >
> > Any feedback are welcome
> >
> > this build system support ldc, gdc, dmd
> > generate tag for geany
> > .pc file for pkg-config
> > Show more more in README
> >
> > Is very easy to use it just set some var and it is done
> >
> > regards
> >
> 
> Looks good, but usage of the DFLAGS variable might shadow the DFLAGS environment variable, witch some people use instead of the configuration file.
> 
> I've been using DCFLAGS as the variable name sine the problem was reported for the GtkD MakeFile, See: http://www.dsource.org/projects/gtkd/ticket/90
> 

oh ok so i need rename DFLAGS to DCFLAGS

thanks