testFont
This commit is contained in:
parent
135e770f41
commit
834576a531
1 changed files with 7 additions and 3 deletions
|
@ -1,10 +1,11 @@
|
||||||
OBJ=StringUtiltest.o ../StringUtil.o
|
|
||||||
CXX=g++
|
CXX=g++
|
||||||
CXXFLAGS= -I.. -DDEBUG -Wall -g -O2
|
CXXFLAGS= -I.. -DDEBUG -Wall -g -O2
|
||||||
LIBS=
|
LIBS=
|
||||||
XFLAGS= -I/usr/X11R6/include
|
XFLAGS= -I/usr/X11R6/include
|
||||||
XLIBS= -L/usr/X11R6/lib -lX11
|
XLIBS= -L/usr/X11R6/lib -lX11 -lXft
|
||||||
COMPILEFILE=$(CXX) -c $(CXXFLAGS)
|
COMPILEFILE=$(CXX) -c $(CXXFLAGS)
|
||||||
|
FONT_OBJ = ../BaseDisplay.o ../Font.o ../XFontImp.o ../XftFontImp.o ../XmbFontImp.o \
|
||||||
|
../Timer.o ../StringUtil.o ../i18n.o
|
||||||
|
|
||||||
all: testStringUtil testKeys testResource testSignal
|
all: testStringUtil testKeys testResource testSignal
|
||||||
|
|
||||||
|
@ -35,11 +36,14 @@ testResource: Resourcetest.o Resource.o
|
||||||
testSignal: signaltest.cc ../SignalHandler.o
|
testSignal: signaltest.cc ../SignalHandler.o
|
||||||
${CXX} ${LIBS} signaltest.cc ../SignalHandler.o -o testSignal
|
${CXX} ${LIBS} signaltest.cc ../SignalHandler.o -o testSignal
|
||||||
|
|
||||||
|
testFont: testFont.cc ${FONT_OBJ}
|
||||||
|
${CXX} ${CXXFLAGS} ${XLIBS} testFont.cc ${FONT_OBJ} -o testFont
|
||||||
|
|
||||||
run: testResource testKeys testStringUtil
|
run: testResource testKeys testStringUtil testFont
|
||||||
./testKeys
|
./testKeys
|
||||||
./testStringUtil
|
./testStringUtil
|
||||||
./testResource
|
./testResource
|
||||||
./testSignal
|
./testSignal
|
||||||
|
./testFont
|
||||||
clean:
|
clean:
|
||||||
rm -f *.o
|
rm -f *.o
|
||||||
|
|
Loading…
Reference in a new issue