aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorfluxgen <fluxgen>2005-01-15 13:15:49 (GMT)
committerfluxgen <fluxgen>2005-01-15 13:15:49 (GMT)
commit676c89ab59f8c0f19bbe7397ac2c851e80d39093 (patch)
tree389dac835b4167e1882b9a9088e064f0057680fd
parentf947c73420b3a3b59c38e714b703f05b4954e980 (diff)
downloadfluxbox-676c89ab59f8c0f19bbe7397ac2c851e80d39093.zip
fluxbox-676c89ab59f8c0f19bbe7397ac2c851e80d39093.tar.bz2
fixed some issues and added testMenu target
-rw-r--r--src/tests/Makefile7
1 files changed, 5 insertions, 2 deletions
diff --git a/src/tests/Makefile b/src/tests/Makefile
index f6178c8..c982a7f 100644
--- a/src/tests/Makefile
+++ b/src/tests/Makefile
@@ -2,12 +2,12 @@ CXX=g++
2CXXFLAGS= -I.. -I../FbTk -DDEBUG -DUSE_XFT -Wall -g -O2 ../FbTk/libFbTk.a 2CXXFLAGS= -I.. -I../FbTk -DDEBUG -DUSE_XFT -Wall -g -O2 ../FbTk/libFbTk.a
3LIBS= 3LIBS=
4XFLAGS= -I/usr/X11R6/include 4XFLAGS= -I/usr/X11R6/include
5XLIBS= -L/usr/X11R6/lib -lX11 -lXft 5XLIBS= -L/usr/X11R6/lib -lX11 -lXft -lXpm -lImlib2
6COMPILEFILE=$(CXX) -c $(CXXFLAGS) 6COMPILEFILE=$(CXX) -c $(CXXFLAGS)
7FONT_OBJ = ../FbTk/libFbTk.a 7FONT_OBJ = ../FbTk/libFbTk.a
8COMPILE = ${CXX} ${CXXFLAGS} ${XLIBS} 8COMPILE = ${CXX} ${CXXFLAGS} ${XLIBS}
9 9
10all: testFont testTexture movetest 10all: testMenu testFont testTexture movetest
11 11
12.cc.o: 12.cc.o:
13 $(CXX) -c $(CXXFLAGS) $< 13 $(CXX) -c $(CXXFLAGS) $<
@@ -30,6 +30,9 @@ signaltest:
30testFont: testFont.cc ${FONT_OBJ} 30testFont: testFont.cc ${FONT_OBJ}
31 ${CXX} testFont.cc -o testFont ${CXXFLAGS} ${XLIBS} 31 ${CXX} testFont.cc -o testFont ${CXXFLAGS} ${XLIBS}
32 32
33testMenu: menutest.cc
34 ${CXX} menutest.cc -o testMenu ${CXXFLAGS} ${XLIBS} ../FbMenuParser.o ../FbTk/libFbTk.a -lXpm -lImlib2 ../Parser.o
35
33testLayers: testLayers.cc 36testLayers: testLayers.cc
34 ${CXX} ${CXXFLAGS} ${XLIBS} testLayers.cc ../FbTk/libFbTk.a -o testLayers 37 ${CXX} ${CXXFLAGS} ${XLIBS} testLayers.cc ../FbTk/libFbTk.a -o testLayers
35 38