I need to generate the following makefile code throught makeMaker.
ifneq ($(wildcard make_${SVC_PLATFORM}.inc),)
include make_${SVC_PLATFORM}.inc
else
include ../make_${SVC_PLATFORM}.inc
endifWhat is the syntax for generating the above makefile code through makeMaker ? -Nambi Sankaran
