Use the AM_CONDITIONAL macro in configure.ac.
The script sets a variable you can test, e.g., a variable that is set to non-empty if the condition is enabled: AM_CONDITIONAL([ENABLE_SOURCECODEPATH], [test "x$ac_srcpath" != "x"])
Then in Makefile.am:
if !ENABLE_SOURCECODEPATH
SOURCECODEPATH = ...
endif
However, since you are explicitly defining the variable if it's not defined, you should probably define it in configure.ac regardless, using AC_SUBST(SRCPATH, $ac_srcpath) :
SOURCECODEPATH = @SRCPATH@ # or $(SRCPATH)