ceph/qa/workunits/Makefile.am
Tommi Virtanen c9825f0874 automake: Make debug targets known but not built by default in non-debug builds.
With this, "./configure --without-debug && make -C src testceph" will work.
Before this, it would use make builtin rules, and fail to compile in a
confusing manner.

Signed-off-by: Tommi Virtanen <tommi.virtanen@dreamhost.com>
2011-04-27 12:16:52 -07:00

10 lines
144 B
Makefile

AUTOMAKE_OPTIONS = gnu
SUBDIRS =
bin_PROGRAMS =
direct_io_test_SOURCES = direct_io_test.c
if WITH_DEBUG
bin_PROGRAMS += direct_io_test
endif