14 lines
		
	
	
		
			553 B
		
	
	
	
		
			Makefile
		
	
	
			
		
		
	
	
			14 lines
		
	
	
		
			553 B
		
	
	
	
		
			Makefile
		
	
	
#----------------------------------------------------------------------------------------------------
 | 
						|
# CppUnitLite
 | 
						|
# replaced Makefile with automake for easy linking
 | 
						|
#----------------------------------------------------------------------------------------------------
 | 
						|
 | 
						|
headers = TestHarness.h
 | 
						|
sources = Failure.cpp SimpleString.cpp Test.cpp TestRegistry.cpp TestResult.cpp
 | 
						|
headers += $(sources:.cpp=.h)
 | 
						|
 | 
						|
CppUnitLitedir = $(pkgincludedir)/CppUnitLite
 | 
						|
noinst_LIBRARIES = libCppUnitLite.a
 | 
						|
libCppUnitLite_a_SOURCES = $(sources)
 | 
						|
noinst_HEADERS = $(headers)
 |