mirror of
https://github.com/jezhiggins/arabica
synced 2024-11-17 07:48:50 +01:00
20191d188d
added Makefile.common for CPPUNIT* definitions (and future maintenance) added include Makefile.common in Makefile.header* cleaned a couple test Makefiles; everything now compiles under linux gcc4.0.2
17 lines
683 B
Text
17 lines
683 B
Text
CPPUNIT_DIR = ../CppUnit
|
|
|
|
CPPUNITFW_FILES = TestCase.cpp TestFailure.cpp TestResult.cpp TestSuite.cpp
|
|
CPPUNITFW_SRCS = $(patsubst Test%,$(CPPUNIT_DIR)/framework/Test%,$(CPPUNITFW_FILES))
|
|
CPPUNITFW_OBJS = $(patsubst %.cpp,%.o,$(CPPUNITFW_SRCS))
|
|
|
|
CPPUNITUI_FILES = TextTestResult.cpp
|
|
CPPUNITUI_SRCS = $(patsubst Text%,$(CPPUNIT_DIR)/textui/Text%,$(CPPUNITUI_FILES))
|
|
CPPUNITUI_OBJS = $(patsubst %.cpp,%.o,$(CPPUNITUI_SRCS))
|
|
|
|
CPPUNITRUNNER_FILES = TestRunner.cpp
|
|
CPPUNITRUNNER_SRCS = $(patsubst Test%,$(CPPUNIT_DIR)/Test%,$(CPPUNITRUNNER_FILES))
|
|
CPPUNITRUNNER_OBJS = $(patsubst %.cpp,%.o,$(CPPUNITRUNNER_SRCS))
|
|
|
|
CPPUNIT_OBJS = $(CPPUNITFW_OBJS) $(CPPUNITUI_OBJS) $(CPPUNITRUNNER_OBJS)
|
|
|
|
|