shithub: openh264

Download patch

ref: 16099cfd32f2d1a236d94545f6fd1feb17eeb863
parent: dc2d799d2b60348a9af9add060bb7d08dd9107bf
parent: c0fcb8f90fbcb86bcb42382d23810faeeb08066f
author: Ethan Hugg <[email protected]>
date: Fri Jan 17 03:49:56 EST 2014

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

Don't call make recursively to build codec_unittest

--- a/Makefile
+++ b/Makefile
@@ -97,11 +97,11 @@
 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