diff options
author | fluxgen <fluxgen> | 2002-10-19 13:56:54 (GMT) |
---|---|---|
committer | fluxgen <fluxgen> | 2002-10-19 13:56:54 (GMT) |
commit | 38253628c20a4ffcc9bc779f6988648ce0c46710 (patch) | |
tree | 98107a2f364387cdf1fe59e9f41fb77284accc1f | |
parent | 5b62ce19cb80e01bb04e0c3de80f94a600386118 (diff) | |
download | fluxbox-38253628c20a4ffcc9bc779f6988648ce0c46710.zip fluxbox-38253628c20a4ffcc9bc779f6988648ce0c46710.tar.bz2 |
fixed deps
-rw-r--r-- | src/tests/Makefile | 10 |
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 | |||
10 | all: testStringUtil testKeys testResource testSignal | 10 | all: 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 | |||
15 | StringUtil.o: ../StringUtil.cc ../StringUtil.hh | 23 | StringUtil.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 | ||