summaryrefslogtreecommitdiff
path: root/core/apps/textedit
authormark <mark>2002-02-18 16:52:08 (UTC)
committer mark <mark>2002-02-18 16:52:08 (UTC)
commit46ae2ea92e910138307e65a8e4fbd666655766f4 (patch) (unidiff)
tree92b38969b4e8b1d4b9605b04fada0818a5cd9cd2 /core/apps/textedit
parent6e03d71c0e471659e7899e6641b20c62088cf34c (diff)
downloadopie-46ae2ea92e910138307e65a8e4fbd666655766f4.zip
opie-46ae2ea92e910138307e65a8e4fbd666655766f4.tar.gz
opie-46ae2ea92e910138307e65a8e4fbd666655766f4.tar.bz2
Fix
Diffstat (limited to 'core/apps/textedit') (more/less context) (ignore whitespace changes)
-rw-r--r--core/apps/textedit/Makefile.in108
1 files changed, 83 insertions, 25 deletions
diff --git a/core/apps/textedit/Makefile.in b/core/apps/textedit/Makefile.in
index bef671c..399ea4b 100644
--- a/core/apps/textedit/Makefile.in
+++ b/core/apps/textedit/Makefile.in
@@ -23,16 +23,31 @@ 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 \
28 fontDialog.h \
29 fileSaver.h
27 SOURCES =main.cpp \ 30 SOURCES =main.cpp \
28 textedit.cpp 31 textedit.cpp \
32 fileBrowser.cpp \
33 fontDialog.cpp \
34 fileSaver.cpp
29 OBJECTS =main.o \ 35 OBJECTS =main.o \
30 textedit.o 36 textedit.o \
37 fileBrowser.o \
38 fontDialog.o \
39 fileSaver.o
31INTERFACES = 40INTERFACES =
32UICDECLS = 41UICDECLS =
33UICIMPLS = 42UICIMPLS =
34 SRCMOC =moc_textedit.cpp 43 SRCMOC =moc_textedit.cpp \
35 OBJMOC =moc_textedit.o 44 moc_fileBrowser.cpp \
45 moc_fontDialog.cpp \
46 moc_fileSaver.cpp
47 OBJMOC =moc_textedit.o \
48 moc_fileBrowser.o \
49 moc_fontDialog.o \
50 moc_fileSaver.o
36 51
37 52
38####### Implicit rules 53####### Implicit rules
@@ -64,8 +79,10 @@ $(DESTDIR)$(TARGET): $(UICDECLS) $(OBJECTS) $(OBJMOC) $(SUBLIBS)
64 79
65moc: $(SRCMOC) 80moc: $(SRCMOC)
66 81
67tmake: 82tmake: Makefile.in
68 tmake textedit.pro 83
84Makefile.in: textedit.pro
85 tmake textedit.pro -o Makefile.in
69 86
70clean: 87clean:
71 -rm -f $(OBJECTS) $(OBJMOC) $(SRCMOC) $(UICIMPLS) $(UICDECLS) 88 -rm -f $(OBJECTS) $(OBJMOC) $(SRCMOC) $(UICIMPLS) $(UICDECLS)
@@ -100,32 +117,73 @@ REQUIRES=
100 117
101main.o: main.cpp \ 118main.o: main.cpp \
102 textedit.h \ 119 textedit.h \
103 $(OPIEDIR)/include/qpe/filemanager.h \ 120 /home/mark/source/opie/include/qpe/filemanager.h \
104 $(OPIEDIR)/include/qpe/qpeapplication.h \ 121 /home/mark/source/opie/include/qpe/qpeapplication.h
105 $(OPIEDIR)/include/qpedecoration_qws.h \
106 $(OPIEDIR)/include/timestring.h
107 122
108textedit.o: textedit.cpp \ 123textedit.o: textedit.cpp \
109 textedit.h \ 124 textedit.h \
110 $(OPIEDIR)/include/qpe/filemanager.h \ 125 /home/mark/source/opie/include/qpe/filemanager.h \
111 $(OPIEDIR)/include/qpe/global.h \ 126 fileBrowser.h \
112 $(OPIEDIR)/include/qpe/fileselector.h \ 127 fileSaver.h \
113 $(OPIEDIR)/include/filemanager.h \ 128 fontDialog.h \
114 $(OPIEDIR)/include/applnk.h \ 129 /home/mark/source/opie/include/qpe/fontdatabase.h \
115 $(OPIEDIR)/include/qpe/applnk.h \ 130 /home/mark/source/opie/include/qpe/fontfactoryinterface.h \
116 $(OPIEDIR)/include/qpe/resource.h \ 131 /home/mark/source/opie/include/qpe/qcom.h \
117 $(OPIEDIR)/include/qpe/config.h \ 132 /home/mark/source/opie/include/qpe/quuid.h \
118 $(OPIEDIR)/include/qpe/qpeapplication.h \ 133 /home/mark/source/opie/include/qpe/global.h \
119 $(OPIEDIR)/include/qpedecoration_qws.h \ 134 /home/mark/source/opie/include/qpe/fileselector.h \
120 $(OPIEDIR)/include/timestring.h \ 135 /home/mark/source/opie/include/qpe/applnk.h \
121 $(OPIEDIR)/include/qpe/qpemenubar.h \ 136 /home/mark/source/opie/include/qpe/resource.h \
122 $(OPIEDIR)/include/qpe/qpetoolbar.h 137 /home/mark/source/opie/include/qpe/config.h \
138 /home/mark/source/opie/include/qpe/qpeapplication.h \
139 /home/mark/source/opie/include/qpe/qpemenubar.h \
140 /home/mark/source/opie/include/qpe/qpetoolbar.h
141
142fileBrowser.o: fileBrowser.cpp \
143 fileBrowser.h \
144 /home/mark/source/opie/include/qpe/config.h
145
146fontDialog.o: fontDialog.cpp \
147 fontDialog.h \
148 /home/mark/source/opie/include/qpe/fontdatabase.h \
149 /home/mark/source/opie/include/qpe/fontfactoryinterface.h \
150 /home/mark/source/opie/include/qpe/qcom.h \
151 /home/mark/source/opie/include/qpe/quuid.h \
152 /home/mark/source/opie/include/qpe/config.h \
153 /home/mark/source/opie/include/qpe/qpeapplication.h
154
155fileSaver.o: fileSaver.cpp \
156 fileSaver.h \
157 /home/mark/source/opie/include/qpe/config.h \
158 /home/mark/source/opie/include/qpe/qpeapplication.h
123 159
124moc_textedit.o: moc_textedit.cpp \ 160moc_textedit.o: moc_textedit.cpp \
125 textedit.h \ 161 textedit.h \
126 $(OPIEDIR)/include/qpe/filemanager.h 162 /home/mark/source/opie/include/qpe/filemanager.h
163
164moc_fileBrowser.o: moc_fileBrowser.cpp \
165 fileBrowser.h
166
167moc_fontDialog.o: moc_fontDialog.cpp \
168 fontDialog.h \
169 /home/mark/source/opie/include/qpe/fontdatabase.h \
170 /home/mark/source/opie/include/qpe/fontfactoryinterface.h \
171 /home/mark/source/opie/include/qpe/qcom.h \
172 /home/mark/source/opie/include/qpe/quuid.h
173
174moc_fileSaver.o: moc_fileSaver.cpp \
175 fileSaver.h
127 176
128moc_textedit.cpp: textedit.h 177moc_textedit.cpp: textedit.h
129 $(MOC) textedit.h -o moc_textedit.cpp 178 $(MOC) textedit.h -o moc_textedit.cpp
130 179
180moc_fileBrowser.cpp: fileBrowser.h
181 $(MOC) fileBrowser.h -o moc_fileBrowser.cpp
182
183moc_fontDialog.cpp: fontDialog.h
184 $(MOC) fontDialog.h -o moc_fontDialog.cpp
185
186moc_fileSaver.cpp: fileSaver.h
187 $(MOC) fileSaver.h -o moc_fileSaver.cpp
188
131 189