I need to compile my program with or without some libraries depending on which of the two hosts it is running. I don't know what to use at the right side of HOST=
in my makefile to make this work as I want it to:
ifeq(${HOST},${ADDITIONAL_LIBS_HOST})
ADD_LIBS= ...
${ADDITIONAL_LIBS_HOST}
is the name of host as gotten from
echo ${HOSTNAME}