I have a rule :

 ${GDS_DATA}/%.${OUTSUFFIX} : %.${INSUFFIX}
  ${PVKIT} layoutConvert \
    -technology ${TECHNOLOGY} \
    -outformat ${OUTFORMAT} \
    -layout $< \
    -outLayout $@
  ${PVKIT} \
    -pvkitPlugin ${PVKITPLUGIN} \
    runHerc ${HERCHOME} \
    -outFormat ${OUTFORMAT} \
    -technology ${TECHNOLOGY} \
    -process ${PROCESS} \
    -rules ${RULES} \
    -metalSys ${METAL} \
    -rulesFile ${RULESFILE} \
    -useChameleonAuxillary false \
    -createVueOutput true \
    -cell $(<F) \
    -layout $@
 exit 100

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


_______________________________________________
Help-make mailing list
[email protected]
http://lists.gnu.org/mailman/listinfo/help-make

Reply via email to