Merge pull request #154 from mstorsjo/no-recursive-make

Don't call make recursively to build codec_unittest
This commit is contained in:
Ethan Hugg 2014-01-17 08:49:56 -08:00
commit 16099cfd32

View File

@ -97,11 +97,11 @@ clean:
gtest-bootstrap:
svn co https://googletest.googlecode.com/svn/trunk/ gtest
test:
ifeq ($(HAVE_GTEST),Yes)
$(MAKE) codec_unittest
test: codec_unittest
./codec_unittest
else
test:
@echo "./gtest : No such file or directory."
@echo "You do not have gtest. Run make gtest-bootstrap to get gtest"
endif