summaryrefslogtreecommitdiff
path: root/noncore/tools/calculator/Makefile.in
Unidiff
Diffstat (limited to 'noncore/tools/calculator/Makefile.in') (more/less context) (ignore whitespace changes)
-rw-r--r--noncore/tools/calculator/Makefile.in139
1 files changed, 0 insertions, 139 deletions
diff --git a/noncore/tools/calculator/Makefile.in b/noncore/tools/calculator/Makefile.in
deleted file mode 100644
index ba78df5..0000000
--- a/noncore/tools/calculator/Makefile.in
+++ b/dev/null
@@ -1,139 +0,0 @@
1#############################################################################
2
3####### Compiler, tools and options
4
5 CXX =$(SYSCONF_CXX) $(QT_CXX_MT)
6 CXXFLAGS=$(SYSCONF_CXXFLAGS_QT) $(SYSCONF_CXXFLAGS)
7 CC =$(SYSCONF_CC) $(QT_C_MT)
8 CFLAGS =$(SYSCONF_CFLAGS)
9 INCPATH =-I$(OPIEDIR)/include
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)
12 MOC =$(SYSCONF_MOC)
13 UIC =$(SYSCONF_UIC)
14
15####### Target
16
17DESTDIR = $(OPIEDIR)/bin/
18VER_MAJ = 1
19VER_MIN = 0
20VER_PATCH = 0
21 TARGET= calculator
22TARGET1 = lib$(TARGET).so.$(VER_MAJ)
23
24####### Files
25
26 HEADERS =calculatorimpl.h
27 SOURCES =calculatorimpl.cpp \
28 main.cpp
29 OBJECTS =calculatorimpl.o \
30 main.o \
31 calculator.o
32INTERFACES = calculator.ui
33UICDECLS = calculator.h
34UICIMPLS = calculator.cpp
35 SRCMOC =moc_calculatorimpl.cpp \
36 moc_calculator.cpp
37 OBJMOC =moc_calculatorimpl.o \
38 moc_calculator.o
39
40
41####### Implicit rules
42
43.SUFFIXES: .cpp .cxx .cc .C .c
44
45.cpp.o:
46 $(CXX) -c $(CXXFLAGS) $(INCPATH) -o $@ $<
47
48.cxx.o:
49 $(CXX) -c $(CXXFLAGS) $(INCPATH) -o $@ $<
50
51.cc.o:
52 $(CXX) -c $(CXXFLAGS) $(INCPATH) -o $@ $<
53
54.C.o:
55 $(CXX) -c $(CXXFLAGS) $(INCPATH) -o $@ $<
56
57.c.o:
58 $(CC) -c $(CFLAGS) $(INCPATH) -o $@ $<
59
60####### Build rules
61
62
63all: $(DESTDIR)$(TARGET)
64
65$(DESTDIR)$(TARGET): $(UICDECLS) $(OBJECTS) $(OBJMOC) $(SUBLIBS)
66 $(SYSCONF_LINK) $(LFLAGS) -o $(DESTDIR)$(TARGET) $(OBJECTS) $(OBJMOC) $(LIBS)
67
68moc: $(SRCMOC)
69
70tmake:
71 tmake calculator.pro
72
73clean:
74 -rm -f $(OBJECTS) $(OBJMOC) $(SRCMOC) $(UICIMPLS) $(UICDECLS)
75 -rm -f *~ core
76 -rm -f allmoc.cpp
77
78####### Extension Modules
79
80listpromodules:
81 @echo
82
83listallmodules:
84 @echo
85
86listaddonpromodules:
87 @echo
88
89listaddonentmodules:
90 @echo
91
92
93REQUIRES=
94
95####### Sub-libraries
96
97
98###### Combined headers
99
100
101
102####### Compile
103
104calculatorimpl.o: calculatorimpl.cpp \
105 calculatorimpl.h \
106 calculator.h \
107 $(OPIEDIR)/include/qpe/resource.h \
108 $(OPIEDIR)/include/qpe/qmath.h \
109 $(OPIEDIR)/include/qpe/qpeapplication.h
110
111main.o: main.cpp \
112 calculatorimpl.h \
113 calculator.h \
114 $(OPIEDIR)/include/qpe/qpeapplication.h
115
116calculator.h: calculator.ui
117 $(UIC) calculator.ui -o $(INTERFACE_DECL_PATH)/calculator.h
118
119calculator.cpp: calculator.ui
120 $(UIC) calculator.ui -i calculator.h -o calculator.cpp
121
122calculator.o: calculator.cpp \
123 calculator.h \
124 calculator.ui
125
126moc_calculatorimpl.o: moc_calculatorimpl.cpp \
127 calculatorimpl.h \
128 calculator.h
129
130moc_calculator.o: moc_calculator.cpp \
131 calculator.h
132
133moc_calculatorimpl.cpp: calculatorimpl.h
134 $(MOC) calculatorimpl.h -o moc_calculatorimpl.cpp
135
136moc_calculator.cpp: calculator.h
137 $(MOC) calculator.h -o moc_calculator.cpp
138
139