summaryrefslogtreecommitdiff
path: root/core/apps/textedit/Makefile.in
Unidiff
Diffstat (limited to 'core/apps/textedit/Makefile.in') (more/less context) (show whitespace changes)
-rw-r--r--core/apps/textedit/Makefile.in28
1 files changed, 14 insertions, 14 deletions
diff --git a/core/apps/textedit/Makefile.in b/core/apps/textedit/Makefile.in
index 84542bb..997f2a4 100644
--- a/core/apps/textedit/Makefile.in
+++ b/core/apps/textedit/Makefile.in
@@ -1,29 +1,29 @@
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= textedit 21 TARGET= textedit
22TARGET1 = lib$(TARGET).so.$(VER_MAJ) 22TARGET1 = lib$(TARGET).so.$(VER_MAJ)
23 23
24####### Files 24####### Files
25 25
26 HEADERS =textedit.h 26 HEADERS =textedit.h
27 SOURCES =main.cpp \ 27 SOURCES =main.cpp \
28 textedit.cpp 28 textedit.cpp
29 OBJECTS =main.o \ 29 OBJECTS =main.o \
@@ -91,35 +91,35 @@ REQUIRES=
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 textedit.h \ 102 textedit.h \
103 $(QPEDIR)/include/qpe/filemanager.h \ 103 $(OPIEDIR)/include/qpe/filemanager.h \
104 $(QPEDIR)/include/qpe/qpeapplication.h 104 $(OPIEDIR)/include/qpe/qpeapplication.h
105 105
106textedit.o: textedit.cpp \ 106textedit.o: textedit.cpp \
107 textedit.h \ 107 textedit.h \
108 $(QPEDIR)/include/qpe/filemanager.h \ 108 $(OPIEDIR)/include/qpe/filemanager.h \
109 $(QPEDIR)/include/qpe/global.h \ 109 $(OPIEDIR)/include/qpe/global.h \
110 $(QPEDIR)/include/qpe/fileselector.h \ 110 $(OPIEDIR)/include/qpe/fileselector.h \
111 $(QPEDIR)/include/qpe/applnk.h \ 111 $(OPIEDIR)/include/qpe/applnk.h \
112 $(QPEDIR)/include/qpe/resource.h \ 112 $(OPIEDIR)/include/qpe/resource.h \
113 $(QPEDIR)/include/qpe/config.h \ 113 $(OPIEDIR)/include/qpe/config.h \
114 $(QPEDIR)/include/qpe/qpeapplication.h \ 114 $(OPIEDIR)/include/qpe/qpeapplication.h \
115 $(QPEDIR)/include/qpe/qpemenubar.h \ 115 $(OPIEDIR)/include/qpe/qpemenubar.h \
116 $(QPEDIR)/include/qpe/qpetoolbar.h 116 $(OPIEDIR)/include/qpe/qpetoolbar.h
117 117
118moc_textedit.o: moc_textedit.cpp \ 118moc_textedit.o: moc_textedit.cpp \
119 textedit.h \ 119 textedit.h \
120 $(QPEDIR)/include/qpe/filemanager.h 120 $(OPIEDIR)/include/qpe/filemanager.h
121 121
122moc_textedit.cpp: textedit.h 122moc_textedit.cpp: textedit.h
123 $(MOC) textedit.h -o moc_textedit.cpp 123 $(MOC) textedit.h -o moc_textedit.cpp
124 124
125 125