diff options
Diffstat (limited to 'src/tests/Makefile')
-rw-r--r-- | src/tests/Makefile | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/src/tests/Makefile b/src/tests/Makefile index 8d1c482..668126e 100644 --- a/src/tests/Makefile +++ b/src/tests/Makefile | |||
@@ -7,7 +7,8 @@ COMPILEFILE=$(CXX) -c $(CXXFLAGS) | |||
7 | FONT_OBJ = ../FbTk/libFbTk.a | 7 | FONT_OBJ = ../FbTk/libFbTk.a |
8 | COMPILE = ${CXX} ${CXXFLAGS} ${XLIBS} | 8 | COMPILE = ${CXX} ${CXXFLAGS} ${XLIBS} |
9 | 9 | ||
10 | all: testMenu testFont testTexture movetest | 10 | all: testMenu testFont testTexture movetest testSignals |
11 | |||
11 | 12 | ||
12 | .cc.o: | 13 | .cc.o: |
13 | $(CXX) -c $(CXXFLAGS) $< | 14 | $(CXX) -c $(CXXFLAGS) $< |
@@ -15,6 +16,9 @@ all: testMenu testFont testTexture movetest | |||
15 | glxtest: ../FbTk/App.hh glxtest.cc | 16 | glxtest: ../FbTk/App.hh glxtest.cc |
16 | ${CXX} glxtest.cc ${CXXFLAGS} ${XLIBS} -lGL -lGLU -lXpm -o glxtest | 17 | ${CXX} glxtest.cc ${CXXFLAGS} ${XLIBS} -lGL -lGLU -lXpm -o glxtest |
17 | 18 | ||
19 | testSignals: testSignals.o ../FbTk/Signal.hh ../FbTk/MemFun.hh | ||
20 | $(CXX) $(LIBS) testSignals.o -o testSignals | ||
21 | |||
18 | testStringUtil: StringUtiltest.o | 22 | testStringUtil: StringUtiltest.o |
19 | $(CXX) $(LIBS) StringUtiltest.o ../FbTk/libFbTk.a -o testStringUtil | 23 | $(CXX) $(LIBS) StringUtiltest.o ../FbTk/libFbTk.a -o testStringUtil |
20 | 24 | ||