summaryrefslogtreecommitdiff
path: root/noncore/games/chess/Makefile.in
Unidiff
Diffstat (limited to 'noncore/games/chess/Makefile.in') (more/less context) (ignore whitespace changes)
-rw-r--r--noncore/games/chess/Makefile.in141
1 files changed, 0 insertions, 141 deletions
diff --git a/noncore/games/chess/Makefile.in b/noncore/games/chess/Makefile.in
deleted file mode 100644
index 0987d58..0000000
--- a/noncore/games/chess/Makefile.in
+++ b/dev/null
@@ -1,141 +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= chess
22TARGET1 = lib$(TARGET).so.$(VER_MAJ)
23
24####### Files
25
26 HEADERS =chess.h
27 SOURCES =chess.cpp \
28 main.cpp
29 OBJECTS =chess.o \
30 main.o \
31 mainwindow.o
32INTERFACES = mainwindow.ui
33UICDECLS = mainwindow.h
34UICIMPLS = mainwindow.cpp
35 SRCMOC =moc_chess.cpp \
36 moc_mainwindow.cpp
37 OBJMOC =moc_chess.o \
38 moc_mainwindow.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: Makefile.in
71
72Makefile.in: chess.pro
73 tmake chess.pro -o Makefile.in
74
75clean:
76 -rm -f $(OBJECTS) $(OBJMOC) $(SRCMOC) $(UICIMPLS) $(UICDECLS)
77 -rm -f *~ core
78 -rm -f allmoc.cpp
79
80####### Extension Modules
81
82listpromodules:
83 @echo
84
85listallmodules:
86 @echo
87
88listaddonpromodules:
89 @echo
90
91listaddonentmodules:
92 @echo
93
94
95REQUIRES=
96
97####### Sub-libraries
98
99
100###### Combined headers
101
102
103
104####### Compile
105
106chess.o: chess.cpp \
107 /home/kergoth/roms/openzaurus/buildroot-oz/build/opie/include/qpe/config.h \
108 /home/kergoth/roms/openzaurus/buildroot-oz/build/opie/include/qpe/resource.h \
109 chess.h \
110 /home/kergoth/roms/openzaurus/buildroot-oz/build/opie/include/qpe/process.h
111
112main.o: main.cpp \
113 /home/kergoth/roms/openzaurus/buildroot-oz/build/opie/include/qpe/qpeapplication.h \
114 /home/kergoth/roms/openzaurus/buildroot-oz/build/opie/include/qpe/qpetoolbar.h \
115 chess.h \
116 /home/kergoth/roms/openzaurus/buildroot-oz/build/opie/include/qpe/process.h
117
118mainwindow.h: mainwindow.ui
119 $(UIC) mainwindow.ui -o $(INTERFACE_DECL_PATH)/mainwindow.h
120
121mainwindow.cpp: mainwindow.ui
122 $(UIC) mainwindow.ui -i mainwindow.h -o mainwindow.cpp
123
124mainwindow.o: mainwindow.cpp \
125 mainwindow.h \
126 mainwindow.ui
127
128moc_chess.o: moc_chess.cpp \
129 chess.h \
130 /home/kergoth/roms/openzaurus/buildroot-oz/build/opie/include/qpe/process.h
131
132moc_mainwindow.o: moc_mainwindow.cpp \
133 mainwindow.h
134
135moc_chess.cpp: chess.h
136 $(MOC) chess.h -o moc_chess.cpp
137
138moc_mainwindow.cpp: mainwindow.h
139 $(MOC) mainwindow.h -o moc_mainwindow.cpp
140
141