-rw-r--r-- | core/apps/textedit/Makefile.in | 103 | ||||
-rw-r--r-- | core/apps/textedit/opie-textedit.control | 2 | ||||
-rw-r--r-- | noncore/unsupported/filebrowser/Makefile.in | 48 |
3 files changed, 101 insertions, 52 deletions
diff --git a/core/apps/textedit/Makefile.in b/core/apps/textedit/Makefile.in index 06fdb77..034157f 100644 --- a/core/apps/textedit/Makefile.in +++ b/core/apps/textedit/Makefile.in | |||
@@ -17,46 +17,51 @@ UIC = $(SYSCONF_UIC) | |||
17 | DESTDIR = $(OPIEDIR)/bin/ | 17 | DESTDIR = $(OPIEDIR)/bin/ |
18 | VER_MAJ = 1 | 18 | VER_MAJ = 1 |
19 | VER_MIN = 0 | 19 | VER_MIN = 0 |
20 | VER_PATCH = 0 | 20 | VER_PATCH = 0 |
21 | TARGET= textedit | 21 | TARGET= textedit |
22 | TARGET1 = lib$(TARGET).so.$(VER_MAJ) | 22 | TARGET1 = lib$(TARGET).so.$(VER_MAJ) |
23 | 23 | ||
24 | ####### Files | 24 | ####### Files |
25 | 25 | ||
26 | HEADERS =textedit.h \ | 26 | HEADERS =textedit.h \ |
27 | fileBrowser.h \ | 27 | fileBrowser.h \ |
28 | fontDialog.h \ | 28 | fontDialog.h \ |
29 | fileSaver.h | 29 | fileSaver.h \ |
30 | filePermissions.h | ||
30 | SOURCES =main.cpp \ | 31 | SOURCES =main.cpp \ |
31 | textedit.cpp \ | 32 | textedit.cpp \ |
32 | fileBrowser.cpp \ | 33 | fileBrowser.cpp \ |
33 | fontDialog.cpp \ | 34 | fontDialog.cpp \ |
34 | fileSaver.cpp | 35 | fileSaver.cpp \ |
36 | filePermissions.cpp | ||
35 | OBJECTS =main.o \ | 37 | OBJECTS =main.o \ |
36 | textedit.o \ | 38 | textedit.o \ |
37 | fileBrowser.o \ | 39 | fileBrowser.o \ |
38 | fontDialog.o \ | 40 | fontDialog.o \ |
39 | fileSaver.o | 41 | fileSaver.o \ |
42 | filePermissions.o | ||
40 | INTERFACES = | 43 | INTERFACES = |
41 | UICDECLS = | 44 | UICDECLS = |
42 | UICIMPLS = | 45 | UICIMPLS = |
43 | SRCMOC =moc_textedit.cpp \ | 46 | SRCMOC =moc_textedit.cpp \ |
44 | moc_fileBrowser.cpp \ | 47 | moc_fileBrowser.cpp \ |
45 | moc_fontDialog.cpp \ | 48 | moc_fontDialog.cpp \ |
46 | moc_fileSaver.cpp | 49 | moc_fileSaver.cpp \ |
50 | moc_filePermissions.cpp | ||
47 | OBJMOC =moc_textedit.o \ | 51 | OBJMOC =moc_textedit.o \ |
48 | moc_fileBrowser.o \ | 52 | moc_fileBrowser.o \ |
49 | moc_fontDialog.o \ | 53 | moc_fontDialog.o \ |
50 | moc_fileSaver.o | 54 | moc_fileSaver.o \ |
55 | moc_filePermissions.o | ||
51 | 56 | ||
52 | 57 | ||
53 | ####### Implicit rules | 58 | ####### Implicit rules |
54 | 59 | ||
55 | .SUFFIXES: .cpp .cxx .cc .C .c | 60 | .SUFFIXES: .cpp .cxx .cc .C .c |
56 | 61 | ||
57 | .cpp.o: | 62 | .cpp.o: |
58 | $(CXX) -c $(CXXFLAGS) $(INCPATH) -o $@ $< | 63 | $(CXX) -c $(CXXFLAGS) $(INCPATH) -o $@ $< |
59 | 64 | ||
60 | .cxx.o: | 65 | .cxx.o: |
61 | $(CXX) -c $(CXXFLAGS) $(INCPATH) -o $@ $< | 66 | $(CXX) -c $(CXXFLAGS) $(INCPATH) -o $@ $< |
62 | 67 | ||
@@ -70,26 +75,28 @@ OBJMOC = moc_textedit.o \ | |||
70 | $(CC) -c $(CFLAGS) $(INCPATH) -o $@ $< | 75 | $(CC) -c $(CFLAGS) $(INCPATH) -o $@ $< |
71 | 76 | ||
72 | ####### Build rules | 77 | ####### Build rules |
73 | 78 | ||
74 | 79 | ||
75 | all: $(DESTDIR)$(TARGET) | 80 | all: $(DESTDIR)$(TARGET) |
76 | 81 | ||
77 | $(DESTDIR)$(TARGET): $(UICDECLS) $(OBJECTS) $(OBJMOC) $(SUBLIBS) | 82 | $(DESTDIR)$(TARGET): $(UICDECLS) $(OBJECTS) $(OBJMOC) $(SUBLIBS) |
78 | $(SYSCONF_LINK) $(LFLAGS) -o $(DESTDIR)$(TARGET) $(OBJECTS) $(OBJMOC) $(LIBS) | 83 | $(SYSCONF_LINK) $(LFLAGS) -o $(DESTDIR)$(TARGET) $(OBJECTS) $(OBJMOC) $(LIBS) |
79 | 84 | ||
80 | moc: $(SRCMOC) | 85 | moc: $(SRCMOC) |
81 | 86 | ||
82 | tmake: | 87 | tmake: Makefile.in |
83 | tmake textedit.pro | 88 | |
89 | Makefile.in: textedit.pro | ||
90 | tmake textedit.pro -o Makefile.in | ||
84 | 91 | ||
85 | clean: | 92 | clean: |
86 | -rm -f $(OBJECTS) $(OBJMOC) $(SRCMOC) $(UICIMPLS) $(UICDECLS) | 93 | -rm -f $(OBJECTS) $(OBJMOC) $(SRCMOC) $(UICIMPLS) $(UICDECLS) |
87 | -rm -f *~ core | 94 | -rm -f *~ core |
88 | -rm -f allmoc.cpp | 95 | -rm -f allmoc.cpp |
89 | 96 | ||
90 | ####### Extension Modules | 97 | ####### Extension Modules |
91 | 98 | ||
92 | listpromodules: | 99 | listpromodules: |
93 | @echo | 100 | @echo |
94 | 101 | ||
95 | listallmodules: | 102 | listallmodules: |
@@ -106,82 +113,106 @@ REQUIRES= | |||
106 | 113 | ||
107 | ####### Sub-libraries | 114 | ####### Sub-libraries |
108 | 115 | ||
109 | 116 | ||
110 | ###### Combined headers | 117 | ###### Combined headers |
111 | 118 | ||
112 | 119 | ||
113 | 120 | ||
114 | ####### Compile | 121 | ####### Compile |
115 | 122 | ||
116 | main.o: main.cpp \ | 123 | main.o: main.cpp \ |
117 | textedit.h \ | 124 | textedit.h \ |
118 | $(OPIEDIR)/include/qpe/filemanager.h \ | 125 | fileBrowser.h \ |
119 | $(OPIEDIR)/include/qpe/qpeapplication.h | 126 | fileSaver.h \ |
127 | /usr/src/oldsrc/Opie/opie/include/qpe/filemanager.h \ | ||
128 | /usr/src/oldsrc/Opie/opie/include/qpe/qpeapplication.h \ | ||
129 | /usr/src/oldsrc/Opie/opie/include/qpedecoration_qws.h \ | ||
130 | /usr/src/oldsrc/Opie/opie/include/timestring.h | ||
120 | 131 | ||
121 | textedit.o: textedit.cpp \ | 132 | textedit.o: textedit.cpp \ |
122 | textedit.h \ | 133 | textedit.h \ |
123 | $(OPIEDIR)/include/qpe/filemanager.h \ | ||
124 | fileBrowser.h \ | 134 | fileBrowser.h \ |
125 | fileSaver.h \ | 135 | fileSaver.h \ |
136 | /usr/src/oldsrc/Opie/opie/include/qpe/filemanager.h \ | ||
137 | filePermissions.h \ | ||
126 | fontDialog.h \ | 138 | fontDialog.h \ |
127 | $(OPIEDIR)/include/qpe/fontdatabase.h \ | 139 | /usr/src/oldsrc/Opie/opie/include/qpe/fontdatabase.h \ |
128 | $(OPIEDIR)/include/qpe/fontfactoryinterface.h \ | 140 | /usr/src/oldsrc/Opie/opie/include/qpe/fontfactoryinterface.h \ |
129 | $(OPIEDIR)/include/qpe/qcom.h \ | 141 | /usr/src/oldsrc/Opie/opie/include/qpe/qcom.h \ |
130 | $(OPIEDIR)/include/qpe/quuid.h \ | 142 | /usr/src/oldsrc/Opie/opie/include/qpe/quuid.h \ |
131 | $(OPIEDIR)/include/qpe/global.h \ | 143 | /usr/src/oldsrc/Opie/opie/include/qpe/global.h \ |
132 | $(OPIEDIR)/include/qpe/fileselector.h \ | 144 | /usr/src/oldsrc/Opie/opie/include/qpe/fileselector.h \ |
133 | $(OPIEDIR)/include/qpe/applnk.h \ | 145 | /usr/src/oldsrc/Opie/opie/include/filemanager.h \ |
134 | $(OPIEDIR)/include/qpe/resource.h \ | 146 | /usr/src/oldsrc/Opie/opie/include/applnk.h \ |
135 | $(OPIEDIR)/include/qpe/config.h \ | 147 | /usr/src/oldsrc/Opie/opie/include/qpe/applnk.h \ |
136 | $(OPIEDIR)/include/qpe/qpeapplication.h \ | 148 | /usr/src/oldsrc/Opie/opie/include/qpe/resource.h \ |
137 | $(OPIEDIR)/include/qpe/qpemenubar.h \ | 149 | /usr/src/oldsrc/Opie/opie/include/qpe/config.h \ |
138 | $(OPIEDIR)/include/qpe/qpetoolbar.h | 150 | /usr/src/oldsrc/Opie/opie/include/qpe/qpeapplication.h \ |
151 | /usr/src/oldsrc/Opie/opie/include/qpedecoration_qws.h \ | ||
152 | /usr/src/oldsrc/Opie/opie/include/timestring.h \ | ||
153 | /usr/src/oldsrc/Opie/opie/include/qpe/qpemenubar.h \ | ||
154 | /usr/src/oldsrc/Opie/opie/include/qpe/qpetoolbar.h | ||
139 | 155 | ||
140 | fileBrowser.o: fileBrowser.cpp \ | 156 | fileBrowser.o: fileBrowser.cpp \ |
141 | fileBrowser.h \ | 157 | fileBrowser.h \ |
142 | $(OPIEDIR)/include/qpe/config.h | 158 | /usr/src/oldsrc/Opie/opie/include/qpe/config.h |
143 | 159 | ||
144 | fontDialog.o: fontDialog.cpp \ | 160 | fontDialog.o: fontDialog.cpp \ |
145 | fontDialog.h \ | 161 | fontDialog.h \ |
146 | $(OPIEDIR)/include/qpe/fontdatabase.h \ | 162 | /usr/src/oldsrc/Opie/opie/include/qpe/fontdatabase.h \ |
147 | $(OPIEDIR)/include/qpe/fontfactoryinterface.h \ | 163 | /usr/src/oldsrc/Opie/opie/include/qpe/fontfactoryinterface.h \ |
148 | $(OPIEDIR)/include/qpe/qcom.h \ | 164 | /usr/src/oldsrc/Opie/opie/include/qpe/qcom.h \ |
149 | $(OPIEDIR)/include/qpe/quuid.h \ | 165 | /usr/src/oldsrc/Opie/opie/include/qpe/quuid.h \ |
150 | $(OPIEDIR)/include/qpe/config.h \ | 166 | /usr/src/oldsrc/Opie/opie/include/qpe/config.h \ |
151 | $(OPIEDIR)/include/qpe/qpeapplication.h | 167 | /usr/src/oldsrc/Opie/opie/include/qpe/qpeapplication.h \ |
168 | /usr/src/oldsrc/Opie/opie/include/qpedecoration_qws.h \ | ||
169 | /usr/src/oldsrc/Opie/opie/include/timestring.h | ||
152 | 170 | ||
153 | fileSaver.o: fileSaver.cpp \ | 171 | fileSaver.o: fileSaver.cpp \ |
154 | fileSaver.h \ | 172 | fileSaver.h \ |
155 | $(OPIEDIR)/include/qpe/config.h \ | 173 | /usr/src/oldsrc/Opie/opie/include/qpe/config.h \ |
156 | $(OPIEDIR)/include/qpe/qpeapplication.h | 174 | /usr/src/oldsrc/Opie/opie/include/qpe/qpeapplication.h \ |
175 | /usr/src/oldsrc/Opie/opie/include/qpedecoration_qws.h \ | ||
176 | /usr/src/oldsrc/Opie/opie/include/timestring.h | ||
177 | |||
178 | filePermissions.o: filePermissions.cpp \ | ||
179 | filePermissions.h | ||
157 | 180 | ||
158 | moc_textedit.o: moc_textedit.cpp \ | 181 | moc_textedit.o: moc_textedit.cpp \ |
159 | textedit.h \ | 182 | textedit.h \ |
160 | $(OPIEDIR)/include/qpe/filemanager.h | 183 | fileBrowser.h \ |
184 | fileSaver.h \ | ||
185 | /usr/src/oldsrc/Opie/opie/include/qpe/filemanager.h | ||
161 | 186 | ||
162 | moc_fileBrowser.o: moc_fileBrowser.cpp \ | 187 | moc_fileBrowser.o: moc_fileBrowser.cpp \ |
163 | fileBrowser.h | 188 | fileBrowser.h |
164 | 189 | ||
165 | moc_fontDialog.o: moc_fontDialog.cpp \ | 190 | moc_fontDialog.o: moc_fontDialog.cpp \ |
166 | fontDialog.h \ | 191 | fontDialog.h \ |
167 | $(OPIEDIR)/include/qpe/fontdatabase.h \ | 192 | /usr/src/oldsrc/Opie/opie/include/qpe/fontdatabase.h \ |
168 | $(OPIEDIR)/include/qpe/fontfactoryinterface.h \ | 193 | /usr/src/oldsrc/Opie/opie/include/qpe/fontfactoryinterface.h \ |
169 | $(OPIEDIR)/include/qpe/qcom.h \ | 194 | /usr/src/oldsrc/Opie/opie/include/qpe/qcom.h \ |
170 | $(OPIEDIR)/include/qpe/quuid.h | 195 | /usr/src/oldsrc/Opie/opie/include/qpe/quuid.h |
171 | 196 | ||
172 | moc_fileSaver.o: moc_fileSaver.cpp \ | 197 | moc_fileSaver.o: moc_fileSaver.cpp \ |
173 | fileSaver.h | 198 | fileSaver.h |
174 | 199 | ||
200 | moc_filePermissions.o: moc_filePermissions.cpp \ | ||
201 | filePermissions.h | ||
202 | |||
175 | moc_textedit.cpp: textedit.h | 203 | moc_textedit.cpp: textedit.h |
176 | $(MOC) textedit.h -o moc_textedit.cpp | 204 | $(MOC) textedit.h -o moc_textedit.cpp |
177 | 205 | ||
178 | moc_fileBrowser.cpp: fileBrowser.h | 206 | moc_fileBrowser.cpp: fileBrowser.h |
179 | $(MOC) fileBrowser.h -o moc_fileBrowser.cpp | 207 | $(MOC) fileBrowser.h -o moc_fileBrowser.cpp |
180 | 208 | ||
181 | moc_fontDialog.cpp: fontDialog.h | 209 | moc_fontDialog.cpp: fontDialog.h |
182 | $(MOC) fontDialog.h -o moc_fontDialog.cpp | 210 | $(MOC) fontDialog.h -o moc_fontDialog.cpp |
183 | 211 | ||
184 | moc_fileSaver.cpp: fileSaver.h | 212 | moc_fileSaver.cpp: fileSaver.h |
185 | $(MOC) fileSaver.h -o moc_fileSaver.cpp | 213 | $(MOC) fileSaver.h -o moc_fileSaver.cpp |
186 | 214 | ||
215 | moc_filePermissions.cpp: filePermissions.h | ||
216 | $(MOC) filePermissions.h -o moc_filePermissions.cpp | ||
217 | |||
187 | 218 | ||
diff --git a/core/apps/textedit/opie-textedit.control b/core/apps/textedit/opie-textedit.control index 55fc644..4990466 100644 --- a/core/apps/textedit/opie-textedit.control +++ b/core/apps/textedit/opie-textedit.control | |||
@@ -1,9 +1,9 @@ | |||
1 | Files: bin/textedit apps/Applications/textedit.desktop | 1 | Files: bin/textedit apps/Applications/textedit.desktop |
2 | Priority: optional | 2 | Priority: optional |
3 | Section: opie/applications | 3 | Section: opie/applications |
4 | Maintainer: Warwick Allison <warwick@trolltech.com> | 4 | Maintainer: Warwick Allison <warwick@trolltech.com> |
5 | Architecture: arm | 5 | Architecture: arm |
6 | Version: $QPE_VERSION-$SUB_VERSION | 6 | Version: $QPE_VERSION-$SUB_VERSION |
7 | Depends: opie-base ($QPE_VERSION) | 7 | Depends: opie-base ($QPE_VERSION) |
8 | Description: Text Editor | 8 | Description: Text Editor |
9 | The (slightly enchanced) text editor for the Opie environment. | 9 | The text editor for the Opie environment. |
diff --git a/noncore/unsupported/filebrowser/Makefile.in b/noncore/unsupported/filebrowser/Makefile.in index d1f80b7..d964f79 100644 --- a/noncore/unsupported/filebrowser/Makefile.in +++ b/noncore/unsupported/filebrowser/Makefile.in | |||
@@ -15,38 +15,43 @@ UIC = $(SYSCONF_UIC) | |||
15 | ####### Target | 15 | ####### Target |
16 | 16 | ||
17 | DESTDIR = $(OPIEDIR)/bin/ | 17 | DESTDIR = $(OPIEDIR)/bin/ |
18 | VER_MAJ = 1 | 18 | VER_MAJ = 1 |
19 | VER_MIN = 0 | 19 | VER_MIN = 0 |
20 | VER_PATCH = 0 | 20 | VER_PATCH = 0 |
21 | TARGET= filebrowser | 21 | TARGET= filebrowser |
22 | TARGET1 = lib$(TARGET).so.$(VER_MAJ) | 22 | TARGET1 = lib$(TARGET).so.$(VER_MAJ) |
23 | 23 | ||
24 | ####### Files | 24 | ####### Files |
25 | 25 | ||
26 | HEADERS =inlineedit.h \ | 26 | HEADERS =inlineedit.h \ |
27 | filebrowser.h | 27 | filebrowser.h \ |
28 | filePermissions.h | ||
28 | SOURCES =filebrowser.cpp \ | 29 | SOURCES =filebrowser.cpp \ |
29 | inlineedit.cpp \ | 30 | inlineedit.cpp \ |
31 | filePermissions.cpp \ | ||
30 | main.cpp | 32 | main.cpp |
31 | OBJECTS =filebrowser.o \ | 33 | OBJECTS =filebrowser.o \ |
32 | inlineedit.o \ | 34 | inlineedit.o \ |
35 | filePermissions.o \ | ||
33 | main.o | 36 | main.o |
34 | INTERFACES = | 37 | INTERFACES = |
35 | UICDECLS = | 38 | UICDECLS = |
36 | UICIMPLS = | 39 | UICIMPLS = |
37 | SRCMOC =moc_inlineedit.cpp \ | 40 | SRCMOC =moc_inlineedit.cpp \ |
38 | moc_filebrowser.cpp | 41 | moc_filebrowser.cpp \ |
42 | moc_filePermissions.cpp | ||
39 | OBJMOC =moc_inlineedit.o \ | 43 | OBJMOC =moc_inlineedit.o \ |
40 | moc_filebrowser.o | 44 | moc_filebrowser.o \ |
45 | moc_filePermissions.o | ||
41 | 46 | ||
42 | 47 | ||
43 | ####### Implicit rules | 48 | ####### Implicit rules |
44 | 49 | ||
45 | .SUFFIXES: .cpp .cxx .cc .C .c | 50 | .SUFFIXES: .cpp .cxx .cc .C .c |
46 | 51 | ||
47 | .cpp.o: | 52 | .cpp.o: |
48 | $(CXX) -c $(CXXFLAGS) $(INCPATH) -o $@ $< | 53 | $(CXX) -c $(CXXFLAGS) $(INCPATH) -o $@ $< |
49 | 54 | ||
50 | .cxx.o: | 55 | .cxx.o: |
51 | $(CXX) -c $(CXXFLAGS) $(INCPATH) -o $@ $< | 56 | $(CXX) -c $(CXXFLAGS) $(INCPATH) -o $@ $< |
52 | 57 | ||
@@ -60,26 +65,28 @@ OBJMOC = moc_inlineedit.o \ | |||
60 | $(CC) -c $(CFLAGS) $(INCPATH) -o $@ $< | 65 | $(CC) -c $(CFLAGS) $(INCPATH) -o $@ $< |
61 | 66 | ||
62 | ####### Build rules | 67 | ####### Build rules |
63 | 68 | ||
64 | 69 | ||
65 | all: $(DESTDIR)$(TARGET) | 70 | all: $(DESTDIR)$(TARGET) |
66 | 71 | ||
67 | $(DESTDIR)$(TARGET): $(UICDECLS) $(OBJECTS) $(OBJMOC) $(SUBLIBS) | 72 | $(DESTDIR)$(TARGET): $(UICDECLS) $(OBJECTS) $(OBJMOC) $(SUBLIBS) |
68 | $(SYSCONF_LINK) $(LFLAGS) -o $(DESTDIR)$(TARGET) $(OBJECTS) $(OBJMOC) $(LIBS) | 73 | $(SYSCONF_LINK) $(LFLAGS) -o $(DESTDIR)$(TARGET) $(OBJECTS) $(OBJMOC) $(LIBS) |
69 | 74 | ||
70 | moc: $(SRCMOC) | 75 | moc: $(SRCMOC) |
71 | 76 | ||
72 | tmake: | 77 | tmake: Makefile.in |
73 | tmake filebrowser.pro | 78 | |
79 | Makefile.in: filebrowser.pro | ||
80 | tmake filebrowser.pro -o Makefile.in | ||
74 | 81 | ||
75 | clean: | 82 | clean: |
76 | -rm -f $(OBJECTS) $(OBJMOC) $(SRCMOC) $(UICIMPLS) $(UICDECLS) | 83 | -rm -f $(OBJECTS) $(OBJMOC) $(SRCMOC) $(UICIMPLS) $(UICDECLS) |
77 | -rm -f *~ core | 84 | -rm -f *~ core |
78 | -rm -f allmoc.cpp | 85 | -rm -f allmoc.cpp |
79 | 86 | ||
80 | ####### Extension Modules | 87 | ####### Extension Modules |
81 | 88 | ||
82 | listpromodules: | 89 | listpromodules: |
83 | @echo | 90 | @echo |
84 | 91 | ||
85 | listallmodules: | 92 | listallmodules: |
@@ -97,42 +104,53 @@ REQUIRES= | |||
97 | ####### Sub-libraries | 104 | ####### Sub-libraries |
98 | 105 | ||
99 | 106 | ||
100 | ###### Combined headers | 107 | ###### Combined headers |
101 | 108 | ||
102 | 109 | ||
103 | 110 | ||
104 | ####### Compile | 111 | ####### Compile |
105 | 112 | ||
106 | filebrowser.o: filebrowser.cpp \ | 113 | filebrowser.o: filebrowser.cpp \ |
107 | inlineedit.h \ | 114 | inlineedit.h \ |
108 | filebrowser.h \ | 115 | filebrowser.h \ |
109 | $(OPIEDIR)/include/qpe/resource.h \ | 116 | filePermissions.h \ |
110 | $(OPIEDIR)/include/qpe/global.h \ | 117 | /usr/src/oldsrc/Opie/opie/include/qpe/resource.h \ |
111 | $(OPIEDIR)/include/qpe/mimetype.h \ | 118 | /usr/src/oldsrc/Opie/opie/include/qpe/global.h \ |
112 | $(OPIEDIR)/include/qpe/applnk.h \ | 119 | /usr/src/oldsrc/Opie/opie/include/qpe/mimetype.h \ |
113 | $(OPIEDIR)/include/qpe/qpetoolbar.h \ | 120 | /usr/src/oldsrc/Opie/opie/include/qpe/applnk.h \ |
114 | $(OPIEDIR)/include/qpe/qpemenubar.h | 121 | /usr/src/oldsrc/Opie/opie/include/qcopenvelope_qws.h \ |
122 | /usr/src/oldsrc/Opie/opie/include/qpe/qpetoolbar.h \ | ||
123 | /usr/src/oldsrc/Opie/opie/include/qpe/qpemenubar.h | ||
115 | 124 | ||
116 | inlineedit.o: inlineedit.cpp \ | 125 | inlineedit.o: inlineedit.cpp \ |
117 | inlineedit.h | 126 | inlineedit.h |
118 | 127 | ||
128 | filePermissions.o: filePermissions.cpp \ | ||
129 | filePermissions.h | ||
130 | |||
119 | main.o: main.cpp \ | 131 | main.o: main.cpp \ |
120 | filebrowser.h \ | 132 | filebrowser.h \ |
121 | $(OPIEDIR)/include/qpe/qpeapplication.h \ | 133 | /usr/src/oldsrc/Opie/opie/include/qpe/qpeapplication.h \ |
122 | $(OPIEDIR)/include/qpedecoration_qws.h \ | 134 | /usr/src/oldsrc/Opie/opie/include/qpedecoration_qws.h \ |
123 | $(OPIEDIR)/include/timestring.h \ | 135 | /usr/src/oldsrc/Opie/opie/include/timestring.h \ |
124 | $(OPIEDIR)/include/qpe/mimetype.h | 136 | /usr/src/oldsrc/Opie/opie/include/qpe/mimetype.h |
125 | 137 | ||
126 | moc_inlineedit.o: moc_inlineedit.cpp \ | 138 | moc_inlineedit.o: moc_inlineedit.cpp \ |
127 | inlineedit.h | 139 | inlineedit.h |
128 | 140 | ||
129 | moc_filebrowser.o: moc_filebrowser.cpp \ | 141 | moc_filebrowser.o: moc_filebrowser.cpp \ |
130 | filebrowser.h | 142 | filebrowser.h |
131 | 143 | ||
144 | moc_filePermissions.o: moc_filePermissions.cpp \ | ||
145 | filePermissions.h | ||
146 | |||
132 | moc_inlineedit.cpp: inlineedit.h | 147 | moc_inlineedit.cpp: inlineedit.h |
133 | $(MOC) inlineedit.h -o moc_inlineedit.cpp | 148 | $(MOC) inlineedit.h -o moc_inlineedit.cpp |
134 | 149 | ||
135 | moc_filebrowser.cpp: filebrowser.h | 150 | moc_filebrowser.cpp: filebrowser.h |
136 | $(MOC) filebrowser.h -o moc_filebrowser.cpp | 151 | $(MOC) filebrowser.h -o moc_filebrowser.cpp |
137 | 152 | ||
153 | moc_filePermissions.cpp: filePermissions.h | ||
154 | $(MOC) filePermissions.h -o moc_filePermissions.cpp | ||
155 | |||
138 | 156 | ||