diff options
Diffstat (limited to 'src/tests/Makefile')
-rw-r--r-- | src/tests/Makefile | 10 |
1 files changed, 8 insertions, 2 deletions
diff --git a/src/tests/Makefile b/src/tests/Makefile index a6cc02f..2df6ebe 100644 --- a/src/tests/Makefile +++ b/src/tests/Makefile | |||
@@ -1,6 +1,6 @@ | |||
1 | CXX=g++ | 1 | CXX=g++ |
2 | CXXFLAGS= -I.. -I../FbTk -DDEBUG -DUSE_XFT -Wall -g -O2 | 2 | CXXFLAGS= -I.. -I../FbTk -DDEBUG -DUSE_XFT -Wall -g -O2 ../FbTk/libFbTk.a |
3 | LIBS= | 3 | LIBS= |
4 | XFLAGS= -I/usr/X11R6/include | 4 | XFLAGS= -I/usr/X11R6/include |
5 | XLIBS= -L/usr/X11R6/lib -lX11 -lXft | 5 | XLIBS= -L/usr/X11R6/lib -lX11 -lXft |
6 | COMPILEFILE=$(CXX) -c $(CXXFLAGS) | 6 | COMPILEFILE=$(CXX) -c $(CXXFLAGS) |
@@ -50,6 +50,12 @@ testFont: testFont.cc ${FONT_OBJ} | |||
50 | testLayers: testLayers.cc | 50 | testLayers: testLayers.cc |
51 | ${CXX} ${CXXFLAGS} ${XLIBS} testLayers.cc ../FbTk/libFbTk.a -o testLayers | 51 | ${CXX} ${CXXFLAGS} ${XLIBS} testLayers.cc ../FbTk/libFbTk.a -o testLayers |
52 | 52 | ||
53 | testTransp: transpTest.cc | ||
54 | ${CXX} ${CXXFLAGS} ${XLIBS} transpTest.cc ../FbTk/libFbTk.a -o testTransp | ||
55 | |||
56 | testScale: scaleTest.cc | ||
57 | ${CXX} ${CXXFLAGS} ${XLIBS} scaleTest.cc ../FbTk/libFbTk.a -lXpm -o testScale | ||
58 | |||
53 | run: testLayers testResource testKeys testStringUtil testFont | 59 | run: testLayers testResource testKeys testStringUtil testFont |
54 | ./testLayers | 60 | ./testLayers |
55 | ./testKeys | 61 | ./testKeys |