-rw-r--r-- | core/apps/textedit/Makefile.in | 108 |
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 @@ -25,7 +25,16 @@ TARGET1 = lib$(TARGET).so.$(VER_MAJ) -HEADERS = textedit.h +HEADERS = textedit.h \ + fileBrowser.h \ + fontDialog.h \ + fileSaver.h SOURCES = main.cpp \ - textedit.cpp + textedit.cpp \ + fileBrowser.cpp \ + fontDialog.cpp \ + fileSaver.cpp OBJECTS = main.o \ - textedit.o + textedit.o \ + fileBrowser.o \ + fontDialog.o \ + fileSaver.o INTERFACES = @@ -33,4 +42,10 @@ UICDECLS = UICIMPLS = -SRCMOC = moc_textedit.cpp -OBJMOC = moc_textedit.o +SRCMOC = moc_textedit.cpp \ + moc_fileBrowser.cpp \ + moc_fontDialog.cpp \ + moc_fileSaver.cpp +OBJMOC = moc_textedit.o \ + moc_fileBrowser.o \ + moc_fontDialog.o \ + moc_fileSaver.o @@ -66,4 +81,6 @@ moc: $(SRCMOC) -tmake: - tmake textedit.pro +tmake: Makefile.in + +Makefile.in: textedit.pro + tmake textedit.pro -o Makefile.in @@ -102,6 +119,4 @@ main.o: main.cpp \ textedit.h \ - $(OPIEDIR)/include/qpe/filemanager.h \ - $(OPIEDIR)/include/qpe/qpeapplication.h \ - $(OPIEDIR)/include/qpedecoration_qws.h \ - $(OPIEDIR)/include/timestring.h + /home/mark/source/opie/include/qpe/filemanager.h \ + /home/mark/source/opie/include/qpe/qpeapplication.h @@ -109,15 +124,36 @@ textedit.o: textedit.cpp \ textedit.h \ - $(OPIEDIR)/include/qpe/filemanager.h \ - $(OPIEDIR)/include/qpe/global.h \ - $(OPIEDIR)/include/qpe/fileselector.h \ - $(OPIEDIR)/include/filemanager.h \ - $(OPIEDIR)/include/applnk.h \ - $(OPIEDIR)/include/qpe/applnk.h \ - $(OPIEDIR)/include/qpe/resource.h \ - $(OPIEDIR)/include/qpe/config.h \ - $(OPIEDIR)/include/qpe/qpeapplication.h \ - $(OPIEDIR)/include/qpedecoration_qws.h \ - $(OPIEDIR)/include/timestring.h \ - $(OPIEDIR)/include/qpe/qpemenubar.h \ - $(OPIEDIR)/include/qpe/qpetoolbar.h + /home/mark/source/opie/include/qpe/filemanager.h \ + fileBrowser.h \ + fileSaver.h \ + fontDialog.h \ + /home/mark/source/opie/include/qpe/fontdatabase.h \ + /home/mark/source/opie/include/qpe/fontfactoryinterface.h \ + /home/mark/source/opie/include/qpe/qcom.h \ + /home/mark/source/opie/include/qpe/quuid.h \ + /home/mark/source/opie/include/qpe/global.h \ + /home/mark/source/opie/include/qpe/fileselector.h \ + /home/mark/source/opie/include/qpe/applnk.h \ + /home/mark/source/opie/include/qpe/resource.h \ + /home/mark/source/opie/include/qpe/config.h \ + /home/mark/source/opie/include/qpe/qpeapplication.h \ + /home/mark/source/opie/include/qpe/qpemenubar.h \ + /home/mark/source/opie/include/qpe/qpetoolbar.h + +fileBrowser.o: fileBrowser.cpp \ + fileBrowser.h \ + /home/mark/source/opie/include/qpe/config.h + +fontDialog.o: fontDialog.cpp \ + fontDialog.h \ + /home/mark/source/opie/include/qpe/fontdatabase.h \ + /home/mark/source/opie/include/qpe/fontfactoryinterface.h \ + /home/mark/source/opie/include/qpe/qcom.h \ + /home/mark/source/opie/include/qpe/quuid.h \ + /home/mark/source/opie/include/qpe/config.h \ + /home/mark/source/opie/include/qpe/qpeapplication.h + +fileSaver.o: fileSaver.cpp \ + fileSaver.h \ + /home/mark/source/opie/include/qpe/config.h \ + /home/mark/source/opie/include/qpe/qpeapplication.h @@ -125,3 +161,16 @@ moc_textedit.o: moc_textedit.cpp \ textedit.h \ - $(OPIEDIR)/include/qpe/filemanager.h + /home/mark/source/opie/include/qpe/filemanager.h + +moc_fileBrowser.o: moc_fileBrowser.cpp \ + fileBrowser.h + +moc_fontDialog.o: moc_fontDialog.cpp \ + fontDialog.h \ + /home/mark/source/opie/include/qpe/fontdatabase.h \ + /home/mark/source/opie/include/qpe/fontfactoryinterface.h \ + /home/mark/source/opie/include/qpe/qcom.h \ + /home/mark/source/opie/include/qpe/quuid.h + +moc_fileSaver.o: moc_fileSaver.cpp \ + fileSaver.h @@ -130,2 +179,11 @@ moc_textedit.cpp: textedit.h +moc_fileBrowser.cpp: fileBrowser.h + $(MOC) fileBrowser.h -o moc_fileBrowser.cpp + +moc_fontDialog.cpp: fontDialog.h + $(MOC) fontDialog.h -o moc_fontDialog.cpp + +moc_fileSaver.cpp: fileSaver.h + $(MOC) fileSaver.h -o moc_fileSaver.cpp + |