This is part (hopefully all) of the fixes for #776. The top-level configure.ac configures googletest first and then googlemock. With this changes it is possible to embed googletest into another project that uses autoconf. For an example (though it is WIP), see the commits (and soon PR) referenced from google/protobuf#236.
		
			
				
	
	
		
			15 lines
		
	
	
		
			315 B
		
	
	
	
		
			Makefile
		
	
	
	
	
	
			
		
		
	
	
			15 lines
		
	
	
		
			315 B
		
	
	
	
		
			Makefile
		
	
	
	
	
	
## Process this file with automake to produce Makefile.in
 | 
						|
ACLOCAL_AMFLAGS = -I m4
 | 
						|
 | 
						|
AUTOMAKE_OPTIONS = foreign
 | 
						|
 | 
						|
# Build . before src so that our all-local and clean-local hooks kicks in at
 | 
						|
# the right time.
 | 
						|
SUBDIRS = googletest googlemock
 | 
						|
 | 
						|
EXTRA_DIST = \
 | 
						|
  BUILD.bazel \
 | 
						|
  CMakeLists.txt \
 | 
						|
  README.md \
 | 
						|
  WORKSPACE
 |