summaryrefslogtreecommitdiff
path: root/noncore/games/go/Makefile.in
Unidiff
Diffstat (limited to 'noncore/games/go/Makefile.in') (more/less context) (ignore whitespace changes)
-rw-r--r--noncore/games/go/Makefile.in158
1 files changed, 0 insertions, 158 deletions
diff --git a/noncore/games/go/Makefile.in b/noncore/games/go/Makefile.in
deleted file mode 100644
index 985eff0..0000000
--- a/noncore/games/go/Makefile.in
+++ b/dev/null
@@ -1,158 +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 = ../bin/
18VER_MAJ = 1
19VER_MIN = 0
20VER_PATCH = 0
21 TARGET= go
22TARGET1 = lib$(TARGET).so.$(VER_MAJ)
23
24####### Files
25
26 HEADERS =amigo.h \
27 go.h \
28 goplayutils.h \
29 gowidget.h
30 SOURCES =amigo.c \
31 goplayer.c \
32 goplayutils.c \
33 killable.c \
34 gowidget.cpp \
35 main.cpp
36 OBJECTS =amigo.o \
37 goplayer.o \
38 goplayutils.o \
39 killable.o \
40 gowidget.o \
41 main.o
42INTERFACES =
43UICDECLS =
44UICIMPLS =
45 SRCMOC =moc_gowidget.cpp
46 OBJMOC =moc_gowidget.o
47
48
49####### Implicit rules
50
51.SUFFIXES: .cpp .cxx .cc .C .c
52
53.cpp.o:
54 $(CXX) -c $(CXXFLAGS) $(INCPATH) -o $@ $<
55
56.cxx.o:
57 $(CXX) -c $(CXXFLAGS) $(INCPATH) -o $@ $<
58
59.cc.o:
60 $(CXX) -c $(CXXFLAGS) $(INCPATH) -o $@ $<
61
62.C.o:
63 $(CXX) -c $(CXXFLAGS) $(INCPATH) -o $@ $<
64
65.c.o:
66 $(CC) -c $(CFLAGS) $(INCPATH) -o $@ $<
67
68####### Build rules
69
70
71all: $(DESTDIR)$(TARGET)
72
73$(DESTDIR)$(TARGET): $(UICDECLS) $(OBJECTS) $(OBJMOC) $(SUBLIBS)
74 $(SYSCONF_LINK) $(LFLAGS) -o $(DESTDIR)$(TARGET) $(OBJECTS) $(OBJMOC) $(LIBS)
75
76moc: $(SRCMOC)
77
78tmake:
79 tmake go.pro
80
81clean:
82 -rm -f $(OBJECTS) $(OBJMOC) $(SRCMOC) $(UICIMPLS) $(UICDECLS)
83 -rm -f *~ core
84 -rm -f allmoc.cpp
85
86####### Extension Modules
87
88listpromodules:
89 @echo
90
91listallmodules:
92 @echo
93
94listaddonpromodules:
95 @echo
96
97listaddonentmodules:
98 @echo
99
100
101REQUIRES=
102
103####### Sub-libraries
104
105
106###### Combined headers
107
108
109
110####### Compile
111
112amigo.o: amigo.c \
113 go.h \
114 goplayutils.h \
115 amigo.h
116
117goplayer.o: goplayer.c \
118 go.h \
119 goplayutils.h \
120 amigo.h
121
122goplayutils.o: goplayutils.c \
123 goplayutils.h \
124 amigo.h \
125 go.h
126
127killable.o: killable.c \
128 go.h \
129 goplayutils.h \
130 amigo.h
131
132gowidget.o: gowidget.cpp \
133 gowidget.h \
134 amigo.h \
135 go.h \
136 goplayutils.h \
137 $(OPIEDIR)/include/qpe/config.h \
138 $(OPIEDIR)/include/qpe/resource.h \
139 $(OPIEDIR)/include/qpe/qpetoolbar.h \
140 $(OPIEDIR)/include/qpe/qpemenubar.h
141
142main.o: main.cpp \
143 gowidget.h \
144 amigo.h \
145 go.h \
146 goplayutils.h \
147 $(OPIEDIR)/include/qpe/qpeapplication.h
148
149moc_gowidget.o: moc_gowidget.cpp \
150 gowidget.h \
151 amigo.h \
152 go.h \
153 goplayutils.h
154
155moc_gowidget.cpp: gowidget.h
156 $(MOC) gowidget.h -o moc_gowidget.cpp
157
158