~ubuntu-branches/ubuntu/precise/ceph/precise-proposed

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
AUTOMAKE_OPTIONS = gnu
EXTRA_DIST = autogen.sh ceph.spec.in
# the "." here makes sure check-local builds gtest before it is used
SUBDIRS = . src qa man

EXTRA_DIST += \
	src/test/run-cli-tests \
	src/test/cli \
	src/test/downloads \
	udev/50-rbd.rules
check-local:
#	Build gtest before we build our own tests. Doing this instead
#	of SUBDIRS because with that, gtest's own tests would be run
#	and that would slow us down.
	@echo "Making lib/libgtest.a lib/libgtest_main.a in src/gtest"
	@cd src/gtest && $(MAKE) $(AM_MAKEFLAGS) lib/libgtest.la lib/libgtest_main.la

#	exercise cli tools
	$(srcdir)/src/test/run-cli-tests '$(top_builddir)/src/test'

# "make distclean" both runs this and recurses into src/gtest, if
# gtest is in DIST_SUBDIRS. Take extra care to not fail when
# effectively cleaned twice.
clean-local:
	@if test -e src/gtest/Makefile; then \
	  echo "Making clean in src/gtest"; \
	  cd src/gtest && $(MAKE) $(AM_MAKEFLAGS) clean; \
	fi

	@rm -rf src/test/virtualenv