aboutsummaryrefslogtreecommitdiff
path: root/src/tests
diff options
context:
space:
mode:
authorfluxgen <fluxgen>2002-10-19 13:56:54 (GMT)
committerfluxgen <fluxgen>2002-10-19 13:56:54 (GMT)
commit38253628c20a4ffcc9bc779f6988648ce0c46710 (patch)
tree98107a2f364387cdf1fe59e9f41fb77284accc1f /src/tests
parent5b62ce19cb80e01bb04e0c3de80f94a600386118 (diff)
downloadfluxbox-38253628c20a4ffcc9bc779f6988648ce0c46710.zip
fluxbox-38253628c20a4ffcc9bc779f6988648ce0c46710.tar.bz2
fixed deps
Diffstat (limited to 'src/tests')
-rw-r--r--src/tests/Makefile10
1 files changed, 9 insertions, 1 deletions
diff --git a/src/tests/Makefile b/src/tests/Makefile
index 90776ad..20574fa 100644
--- a/src/tests/Makefile
+++ b/src/tests/Makefile
@@ -10,8 +10,16 @@ FONT_OBJ = ../BaseDisplay.o ../Font.o ../XFontImp.o ../XftFontImp.o ../XmbFontIm
10all: testStringUtil testKeys testResource testSignal 10all: testStringUtil testKeys testResource testSignal
11 11
12.cc.o: 12.cc.o:
13 $(CXX) -c $(CXXFLAGS) $< 13 $(CXX) -c $(CXXFLAGS) $< -o $@
14 14
15../XftFontImp.o: ../XftFontImp.hh ../XftFontImp.cc
16
17../XmbFontImp.o: ../XmbFontImp.hh ../XmbFontImp.cc
18
19../XFontImp.o: ../XFontImp.hh ../XFontImp.cc
20
21../Font.o: ../XFontImp.hh ../XftFontImp.hh ../XmbFontImp.hh ../Font.hh ../Font.cc
22
15StringUtil.o: ../StringUtil.cc ../StringUtil.hh 23StringUtil.o: ../StringUtil.cc ../StringUtil.hh
16 $(CXX) -c $(CXXFLAGS) ../StringUtil.cc -o StringUtil.o 24 $(CXX) -c $(CXXFLAGS) ../StringUtil.cc -o StringUtil.o
17 25