|
CXX = icc |
CXXFLAGS = -g -Wall |
CXXFLAGS = -g -Wall |
|
|
HEADERS = BitmapFont.h BitmapFontFile.h Assumption.h PatMatch.h Element.h |
HEADERS = BitmapFont.h BitmapFontFile.h Assumption.h PatMatch.h Element.h Matchers.h |
|
|
TESTHEADERS = BitmapFontTest.h BitmapFontFileTest.h AssumptionTest.h PatMatchTest.h |
TESTHEADERS = BitmapFontTest.h BitmapFontFileTest.h AssumptionTest.h PatMatchTest.h MatchersTest.h |
|
|
OBJECTS = mytest.o BitmapFont.o BitmapFontFile.o |
OBJECTS = mytest.o BitmapFont.o BitmapFontFile.o Matchers.o Assumption.o PatMatch.o |
|
|
|
TESTOBJECTS = $(OBJECTS) MatchersTest.o AssumptionTest.o BitmapFontTest.o PatMatchTest.o BitmapFontFileTest.o |
|
|
testall : mytest |
testall : mytest |
./mytest |
./mytest |
|
|
mytest.o : $(HEADERS) $(TESTHEADERS) |
mytest.o : $(HEADERS) $(TESTHEADERS) |
|
|
mytest : $(OBJECTS) |
mytest : $(TESTOBJECTS) |
$(CXX) -o $@ $(OBJECTS) -L/usr/local/lib -lcppunit |
$(CXX) -o $@ $(TESTOBJECTS) -lcppunit |