[Top][All Lists]
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: Some simple makefile help
From: |
Paul Smith |
Subject: |
Re: Some simple makefile help |
Date: |
Mon, 30 Jun 2008 19:04:39 -0400 |
On Mon, 2008-06-30 at 17:51 -0500, Billy N. Patton wrote:
> I have a rule :
>
> ${GDS_DATA}/%.${OUTSUFFIX} : %.${INSUFFIX}
> -cell $(<F) \
> The problem is with the $(<F)
>
> When the % is on the right side it is
> SOME_NAME
> the -cell needs the name without the ${INSUFFIX}
> But the ${INSUFFIX} needs to be there for the dependency
I had a little trouble understanding exactly what you're asking, but I
think you just need to use $(*F) instead of $(<F).