If you want to declare that a program can be created (i.e. the goal should be chosen by Automake), but should not be built with make allor make check, you can simply declare it as EXTRA_PROGRAMS.
bin_PROGRAMS = foo
EXTRA_PROGRAMS = bar
foo_SOURCES = foo.cpp
bar_SOURCES = bar.cpp
source
share