www.digitalmars.com         C & C++   DMDScript  

digitalmars.D.learn - Setting um makefile for dmd

reply "Namal" <sotis22 mail.ru> writes:
Hello,

i get myself a nice makefile from here:

https://gist.github.com/darkstalker/2221824

How can I modify it so that I can use the run option of dmd? I 
tried to add another compiler flag variable which would be only 
used with run but then it messed with -of$  option and said it 
couldn't read it.

Thanks
Jun 29 2015
parent "Orfeo" <orfeo.davia gmail.com> writes:
something like that can help?
```
run: all
    $(OUT)

```
Jun 29 2015