Re: GNU make file in ghc/utils folder

2018-02-23 Thread Chris R. Timmons
On 2/23/2018 8:26 AM, Ben Gamari wrote: "Chris R. Timmons" writes: I'm trying to add a new utility to the $(TOP)/ghc/utils folder. The utility has a make file, but I can't seem to get it to play nice with GHC's build system.  The error I receive is "No rule to make

Re: GNU make file in ghc/utils folder

2018-02-23 Thread Ben Gamari
"Chris R. Timmons" writes: > I'm trying to add a new utility to the $(TOP)/ghc/utils folder. The > utility has a make file, but I can't seem to get it to play nice with > GHC's build system.  The error I receive is "No rule to make target...". > > Here's a simple test

GNU make file in ghc/utils folder

2018-02-23 Thread Chris R. Timmons
I'm trying to add a new utility to the $(TOP)/ghc/utils folder. The utility has a make file, but I can't seem to get it to play nice with GHC's build system.  The error I receive is "No rule to make target...". Here's a simple test environment that demonstrates the problem: ---