summaryrefslogtreecommitdiff
path: root/noncore/games/mindbreaker/Makefile.in
Unidiff
Diffstat (limited to 'noncore/games/mindbreaker/Makefile.in') (more/less context) (ignore whitespace changes)
-rw-r--r--noncore/games/mindbreaker/Makefile.in12
1 files changed, 6 insertions, 6 deletions
diff --git a/noncore/games/mindbreaker/Makefile.in b/noncore/games/mindbreaker/Makefile.in
index 88f6fb1..ff29d19 100644
--- a/noncore/games/mindbreaker/Makefile.in
+++ b/noncore/games/mindbreaker/Makefile.in
@@ -1,117 +1,117 @@
1############################################################################# 1#############################################################################
2 2
3####### Compiler, tools and options 3####### Compiler, tools and options
4 4
5 CXX =$(SYSCONF_CXX) $(QT_CXX_MT) 5 CXX =$(SYSCONF_CXX) $(QT_CXX_MT)
6 CXXFLAGS=$(SYSCONF_CXXFLAGS_QT) $(SYSCONF_CXXFLAGS) 6 CXXFLAGS=$(SYSCONF_CXXFLAGS_QT) $(SYSCONF_CXXFLAGS)
7 CC =$(SYSCONF_CC) $(QT_C_MT) 7 CC =$(SYSCONF_CC) $(QT_C_MT)
8 CFLAGS =$(SYSCONF_CFLAGS) 8 CFLAGS =$(SYSCONF_CFLAGS)
9 INCPATH =-I$(QPEDIR)/include 9 INCPATH =-I$(OPIEDIR)/include
10 LFLAGS =$(SYSCONF_LFLAGS_QT) $(SYSCONF_RPATH_QT) $(SYSCONF_LFLAGS) $(QT_LFLAGS_MT) 10 LFLAGS =$(SYSCONF_LFLAGS_QT) $(SYSCONF_RPATH_QT) $(SYSCONF_LFLAGS) $(QT_LFLAGS_MT)
11 LIBS =$(SUBLIBS) -lqpe $(SYSCONF_LIBS_QT) $(SYSCONF_LIBS) $(SYSCONF_LIBS_QTAPP) 11 LIBS =$(SUBLIBS) -lqpe $(SYSCONF_LIBS_QT) $(SYSCONF_LIBS) $(SYSCONF_LIBS_QTAPP)
12 MOC =$(SYSCONF_MOC) 12 MOC =$(SYSCONF_MOC)
13 UIC =$(SYSCONF_UIC) 13 UIC =$(SYSCONF_UIC)
14 14
15####### Target 15####### Target
16 16
17DESTDIR = $(QPEDIR)/bin/ 17DESTDIR = $(OPIEDIR)/bin/
18VER_MAJ = 1 18VER_MAJ = 1
19VER_MIN = 0 19VER_MIN = 0
20VER_PATCH = 0 20VER_PATCH = 0
21 TARGET= mindbreaker 21 TARGET= mindbreaker
22TARGET1 = lib$(TARGET).so.$(VER_MAJ) 22TARGET1 = lib$(TARGET).so.$(VER_MAJ)
23 23
24####### Files 24####### Files
25 25
26 HEADERS =mindbreaker.h 26 HEADERS =mindbreaker.h
27 SOURCES =main.cpp \ 27 SOURCES =main.cpp \
28 mindbreaker.cpp 28 mindbreaker.cpp
29 OBJECTS =main.o \ 29 OBJECTS =main.o \
30 mindbreaker.o 30 mindbreaker.o
31INTERFACES = 31INTERFACES =
32UICDECLS = 32UICDECLS =
33UICIMPLS = 33UICIMPLS =
34 SRCMOC =moc_mindbreaker.cpp 34 SRCMOC =moc_mindbreaker.cpp
35 OBJMOC =moc_mindbreaker.o 35 OBJMOC =moc_mindbreaker.o
36 36
37 37
38####### Implicit rules 38####### Implicit rules
39 39
40.SUFFIXES: .cpp .cxx .cc .C .c 40.SUFFIXES: .cpp .cxx .cc .C .c
41 41
42.cpp.o: 42.cpp.o:
43 $(CXX) -c $(CXXFLAGS) $(INCPATH) -o $@ $< 43 $(CXX) -c $(CXXFLAGS) $(INCPATH) -o $@ $<
44 44
45.cxx.o: 45.cxx.o:
46 $(CXX) -c $(CXXFLAGS) $(INCPATH) -o $@ $< 46 $(CXX) -c $(CXXFLAGS) $(INCPATH) -o $@ $<
47 47
48.cc.o: 48.cc.o:
49 $(CXX) -c $(CXXFLAGS) $(INCPATH) -o $@ $< 49 $(CXX) -c $(CXXFLAGS) $(INCPATH) -o $@ $<
50 50
51.C.o: 51.C.o:
52 $(CXX) -c $(CXXFLAGS) $(INCPATH) -o $@ $< 52 $(CXX) -c $(CXXFLAGS) $(INCPATH) -o $@ $<
53 53
54.c.o: 54.c.o:
55 $(CC) -c $(CFLAGS) $(INCPATH) -o $@ $< 55 $(CC) -c $(CFLAGS) $(INCPATH) -o $@ $<
56 56
57####### Build rules 57####### Build rules
58 58
59 59
60all: $(DESTDIR)$(TARGET) 60all: $(DESTDIR)$(TARGET)
61 61
62$(DESTDIR)$(TARGET): $(UICDECLS) $(OBJECTS) $(OBJMOC) $(SUBLIBS) 62$(DESTDIR)$(TARGET): $(UICDECLS) $(OBJECTS) $(OBJMOC) $(SUBLIBS)
63 $(SYSCONF_LINK) $(LFLAGS) -o $(DESTDIR)$(TARGET) $(OBJECTS) $(OBJMOC) $(LIBS) 63 $(SYSCONF_LINK) $(LFLAGS) -o $(DESTDIR)$(TARGET) $(OBJECTS) $(OBJMOC) $(LIBS)
64 64
65moc: $(SRCMOC) 65moc: $(SRCMOC)
66 66
67tmake: 67tmake:
68 tmake mindbreaker.pro 68 tmake mindbreaker.pro
69 69
70clean: 70clean:
71 -rm -f $(OBJECTS) $(OBJMOC) $(SRCMOC) $(UICIMPLS) $(UICDECLS) 71 -rm -f $(OBJECTS) $(OBJMOC) $(SRCMOC) $(UICIMPLS) $(UICDECLS)
72 -rm -f *~ core 72 -rm -f *~ core
73 -rm -f allmoc.cpp 73 -rm -f allmoc.cpp
74 74
75####### Extension Modules 75####### Extension Modules
76 76
77listpromodules: 77listpromodules:
78 @echo 78 @echo
79 79
80listallmodules: 80listallmodules:
81 @echo 81 @echo
82 82
83listaddonpromodules: 83listaddonpromodules:
84 @echo 84 @echo
85 85
86listaddonentmodules: 86listaddonentmodules:
87 @echo 87 @echo
88 88
89 89
90REQUIRES= 90REQUIRES=
91 91
92####### Sub-libraries 92####### Sub-libraries
93 93
94 94
95###### Combined headers 95###### Combined headers
96 96
97 97
98 98
99####### Compile 99####### Compile
100 100
101main.o: main.cpp \ 101main.o: main.cpp \
102 mindbreaker.h \ 102 mindbreaker.h \
103 $(QPEDIR)/include/qpe/qpeapplication.h 103 $(OPIEDIR)/include/qpe/qpeapplication.h
104 104
105mindbreaker.o: mindbreaker.cpp \ 105mindbreaker.o: mindbreaker.cpp \
106 mindbreaker.h \ 106 mindbreaker.h \
107 $(QPEDIR)/include/qpe/resource.h \ 107 $(OPIEDIR)/include/qpe/resource.h \
108 $(QPEDIR)/include/qpe/config.h \ 108 $(OPIEDIR)/include/qpe/config.h \
109 $(QPEDIR)/include/qpe/qpetoolbar.h 109 $(OPIEDIR)/include/qpe/qpetoolbar.h
110 110
111moc_mindbreaker.o: moc_mindbreaker.cpp \ 111moc_mindbreaker.o: moc_mindbreaker.cpp \
112 mindbreaker.h 112 mindbreaker.h
113 113
114moc_mindbreaker.cpp: mindbreaker.h 114moc_mindbreaker.cpp: mindbreaker.h
115 $(MOC) mindbreaker.h -o moc_mindbreaker.cpp 115 $(MOC) mindbreaker.h -o moc_mindbreaker.cpp
116 116
117 117