Add tooltips test program.
[kdbg.git] / kdbg / testprogs / Makefile
blob7b880b309153d5ee15d32df91c9fe9e915d57a25
1 CXXFLAGS=-O0 -g
3 QT3 = /usr/lib64/qt3
4 QT3INC = -I$(QT3)/include
5 QT3LIB = $(QT3)/lib64/libqt-mt.so
7 PROGS = \
8 anonstruct \
9 locals \
10 longdouble \
11 maths \
12 nestedclass \
13 qt \
14 repeats \
15 std \
16 templates \
17 testfile \
18 tooltips \
19 widechar
21 all: $(PROGS)
23 anonstruct: anonstruct.cpp
24 g++ -o $@ $(CXXFLAGS) $^
26 locals: locals.cpp
27 g++ -o $@ $(CXXFLAGS) $^
29 longdouble: longdouble.c
30 gcc -o $@ $(CXXFLAGS) $^
32 maths: maths.cpp
33 g++ -o $@ $(CXXFLAGS) $^
35 nestedclass: nestedclass.cpp
36 g++ -o $@ $(CXXFLAGS) $^
38 qt: qt.cpp
39 g++ -o $@ $(CXXFLAGS) $^ $(QT3INC) $(QT3LIB)
41 repeats: repeats.cpp
42 g++ -o $@ $(CXXFLAGS) $^ $(QT3INC) $(QT3LIB)
44 std: std.cpp
45 g++ -o $@ $(CXXFLAGS) $^
47 templates: templates.cpp
48 g++ -o $@ $(CXXFLAGS) $^
50 testfile: testfile.cpp
51 g++ -o $@ $(CXXFLAGS) $^ $(QT3INC) $(QT3LIB)
53 tooltips: tooltips.cpp
54 g++ -o $@ $(CXXFLAGS) $^
56 widechar: widechar.cpp
57 g++ -o $@ $(CXXFLAGS) $^