This is the mail archive of the
automake@gnu.org
mailing list for the automake project.
target name not known until configure time
- To: automake at gnu dot org
- Subject: target name not known until configure time
- From: mcmahill at mtl dot mit dot edu
- Date: Fri, 19 Oct 2001 08:34:07 -0400 (EDT)
- List-Id: Discussion list for automake <automake.gnu.org>
- Reply-To: mcmahill at mtl dot mit dot edu
how can I get someting like this to work? The suffix depends on the
operating system and hardware platform. That requirement is set by
something out of my control. I get complaints from automake about the
constructs I've used in the pipestage_${MEXSFX}_SOURCES line.
Thanks
-Dan
MEXSFX=@MEXSFX@
MEX=@MEX@
libexec_PROGRAMS= pipestage.${MEXSFX}
pipestage_${MEXSFX}_SOURCES= pipestage.c
SUFFIXES = .c .${MEXSFX}
.c.${MEXSFX} :
$(MEX) $*.c