all repos — fluxbox @ 676c89ab59f8c0f19bbe7397ac2c851e80d39093

custom fork of the fluxbox windowmanager

fixed some issues and added testMenu target
fluxgen fluxgen
commit

676c89ab59f8c0f19bbe7397ac2c851e80d39093

parent

f947c73420b3a3b59c38e714b703f05b4954e980

1 files changed, 5 insertions(+), 2 deletions(-)

jump to
M src/tests/Makefilesrc/tests/Makefile

@@ -2,12 +2,12 @@ CXX=g++

CXXFLAGS= -I.. -I../FbTk -DDEBUG -DUSE_XFT -Wall -g -O2 ../FbTk/libFbTk.a LIBS= XFLAGS= -I/usr/X11R6/include -XLIBS= -L/usr/X11R6/lib -lX11 -lXft +XLIBS= -L/usr/X11R6/lib -lX11 -lXft -lXpm -lImlib2 COMPILEFILE=$(CXX) -c $(CXXFLAGS) FONT_OBJ = ../FbTk/libFbTk.a COMPILE = ${CXX} ${CXXFLAGS} ${XLIBS} -all: testFont testTexture movetest +all: testMenu testFont testTexture movetest .cc.o: $(CXX) -c $(CXXFLAGS) $<

@@ -29,6 +29,9 @@ ${COMPILE} ../FbTk/SignalHandler.o signaltest.cc -o signaltest

testFont: testFont.cc ${FONT_OBJ} ${CXX} testFont.cc -o testFont ${CXXFLAGS} ${XLIBS} + +testMenu: menutest.cc + ${CXX} menutest.cc -o testMenu ${CXXFLAGS} ${XLIBS} ../FbMenuParser.o ../FbTk/libFbTk.a -lXpm -lImlib2 ../Parser.o testLayers: testLayers.cc ${CXX} ${CXXFLAGS} ${XLIBS} testLayers.cc ../FbTk/libFbTk.a -o testLayers