diff options
Diffstat (limited to 'src')
-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 | ||