summaryrefslogtreecommitdiff
path: root/noncore/games/minesweep/Makefile.in
Unidiff
Diffstat (limited to 'noncore/games/minesweep/Makefile.in') (more/less context) (ignore whitespace changes)
-rw-r--r--noncore/games/minesweep/Makefile.in134
1 files changed, 134 insertions, 0 deletions
diff --git a/noncore/games/minesweep/Makefile.in b/noncore/games/minesweep/Makefile.in
new file mode 100644
index 0000000..9ed6234
--- a/dev/null
+++ b/noncore/games/minesweep/Makefile.in
@@ -0,0 +1,134 @@
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$(QPEDIR)/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 = $(QPEDIR)/bin/
18VER_MAJ = 1
19VER_MIN = 0
20VER_PATCH = 0
21 TARGET= minesweep
22TARGET1 = lib$(TARGET).so.$(VER_MAJ)
23
24####### Files
25
26 HEADERS =minefield.h \
27 minesweep.h
28 SOURCES =main.cpp \
29 minefield.cpp \
30 minesweep.cpp
31 OBJECTS =main.o \
32 minefield.o \
33 minesweep.o
34INTERFACES =
35UICDECLS =
36UICIMPLS =
37 SRCMOC =moc_minefield.cpp \
38 moc_minesweep.cpp
39 OBJMOC =moc_minefield.o \
40 moc_minesweep.o
41
42
43####### Implicit rules
44
45.SUFFIXES: .cpp .cxx .cc .C .c
46
47.cpp.o:
48 $(CXX) -c $(CXXFLAGS) $(INCPATH) -o $@ $<
49
50.cxx.o:
51 $(CXX) -c $(CXXFLAGS) $(INCPATH) -o $@ $<
52
53.cc.o:
54 $(CXX) -c $(CXXFLAGS) $(INCPATH) -o $@ $<
55
56.C.o:
57 $(CXX) -c $(CXXFLAGS) $(INCPATH) -o $@ $<
58
59.c.o:
60 $(CC) -c $(CFLAGS) $(INCPATH) -o $@ $<
61
62####### Build rules
63
64
65all: $(DESTDIR)$(TARGET)
66
67$(DESTDIR)$(TARGET): $(UICDECLS) $(OBJECTS) $(OBJMOC) $(SUBLIBS)
68 $(SYSCONF_LINK) $(LFLAGS) -o $(DESTDIR)$(TARGET) $(OBJECTS) $(OBJMOC) $(LIBS)
69
70moc: $(SRCMOC)
71
72tmake:
73 tmake minesweep.pro
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
106main.o: main.cpp \
107 minesweep.h \
108 $(QPEDIR)/include/qpe/qpeapplication.h
109
110minefield.o: minefield.cpp \
111 minefield.h \
112 $(QPEDIR)/include/qpe/config.h
113
114minesweep.o: minesweep.cpp \
115 minesweep.h \
116 minefield.h \
117 $(QPEDIR)/include/qpe/resource.h \
118 $(QPEDIR)/include/qpe/config.h \
119 $(QPEDIR)/include/qpe/qpetoolbar.h \
120 $(QPEDIR)/include/qpe/qpemenubar.h
121
122moc_minefield.o: moc_minefield.cpp \
123 minefield.h
124
125moc_minesweep.o: moc_minesweep.cpp \
126 minesweep.h
127
128moc_minefield.cpp: minefield.h
129 $(MOC) minefield.h -o moc_minefield.cpp
130
131moc_minesweep.cpp: minesweep.h
132 $(MOC) minesweep.h -o moc_minesweep.cpp
133
134