author | zecke <zecke> | 2002-02-05 02:34:12 (UTC) |
---|---|---|
committer | zecke <zecke> | 2002-02-05 02:34:12 (UTC) |
commit | e77f345ca9812cec21e9df7f1fcec3f6110a66ff (patch) (unidiff) | |
tree | 9cba62493550365c2b3053c95fc63da414c3446b | |
parent | af8212fa21bf4c747707ee314ba838b46bd8211d (diff) | |
download | opie-e77f345ca9812cec21e9df7f1fcec3f6110a66ff.zip opie-e77f345ca9812cec21e9df7f1fcec3f6110a66ff.tar.gz opie-e77f345ca9812cec21e9df7f1fcec3f6110a66ff.tar.bz2 |
Compile fix
/home/ke*/..openzaurus/.../include/qpe -> $(OPIEDIR)/include/qpe
-rw-r--r-- | noncore/games/minesweep/Makefile.in | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/noncore/games/minesweep/Makefile.in b/noncore/games/minesweep/Makefile.in index 6df2608..4835d7a 100644 --- a/noncore/games/minesweep/Makefile.in +++ b/noncore/games/minesweep/Makefile.in | |||
@@ -1,136 +1,136 @@ | |||
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$(OPIEDIR)/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 | ||
17 | DESTDIR = $(OPIEDIR)/bin/ | 17 | DESTDIR = $(OPIEDIR)/bin/ |
18 | VER_MAJ = 1 | 18 | VER_MAJ = 1 |
19 | VER_MIN = 0 | 19 | VER_MIN = 0 |
20 | VER_PATCH = 0 | 20 | VER_PATCH = 0 |
21 | TARGET= minesweep | 21 | TARGET= minesweep |
22 | TARGET1 = lib$(TARGET).so.$(VER_MAJ) | 22 | TARGET1 = lib$(TARGET).so.$(VER_MAJ) |
23 | 23 | ||
24 | ####### Files | 24 | ####### Files |
25 | 25 | ||
26 | HEADERS =minefield.h \ | 26 | HEADERS =minefield.h \ |
27 | minesweep.h | 27 | minesweep.h |
28 | SOURCES =main.cpp \ | 28 | SOURCES =main.cpp \ |
29 | minefield.cpp \ | 29 | minefield.cpp \ |
30 | minesweep.cpp | 30 | minesweep.cpp |
31 | OBJECTS =main.o \ | 31 | OBJECTS =main.o \ |
32 | minefield.o \ | 32 | minefield.o \ |
33 | minesweep.o | 33 | minesweep.o |
34 | INTERFACES = | 34 | INTERFACES = |
35 | UICDECLS = | 35 | UICDECLS = |
36 | UICIMPLS = | 36 | UICIMPLS = |
37 | SRCMOC =moc_minefield.cpp \ | 37 | SRCMOC =moc_minefield.cpp \ |
38 | moc_minesweep.cpp | 38 | moc_minesweep.cpp |
39 | OBJMOC =moc_minefield.o \ | 39 | OBJMOC =moc_minefield.o \ |
40 | moc_minesweep.o | 40 | moc_minesweep.o |
41 | 41 | ||
42 | 42 | ||
43 | ####### Implicit rules | 43 | ####### Implicit rules |
44 | 44 | ||
45 | .SUFFIXES: .cpp .cxx .cc .C .c | 45 | .SUFFIXES: .cpp .cxx .cc .C .c |
46 | 46 | ||
47 | .cpp.o: | 47 | .cpp.o: |
48 | $(CXX) -c $(CXXFLAGS) $(INCPATH) -o $@ $< | 48 | $(CXX) -c $(CXXFLAGS) $(INCPATH) -o $@ $< |
49 | 49 | ||
50 | .cxx.o: | 50 | .cxx.o: |
51 | $(CXX) -c $(CXXFLAGS) $(INCPATH) -o $@ $< | 51 | $(CXX) -c $(CXXFLAGS) $(INCPATH) -o $@ $< |
52 | 52 | ||
53 | .cc.o: | 53 | .cc.o: |
54 | $(CXX) -c $(CXXFLAGS) $(INCPATH) -o $@ $< | 54 | $(CXX) -c $(CXXFLAGS) $(INCPATH) -o $@ $< |
55 | 55 | ||
56 | .C.o: | 56 | .C.o: |
57 | $(CXX) -c $(CXXFLAGS) $(INCPATH) -o $@ $< | 57 | $(CXX) -c $(CXXFLAGS) $(INCPATH) -o $@ $< |
58 | 58 | ||
59 | .c.o: | 59 | .c.o: |
60 | $(CC) -c $(CFLAGS) $(INCPATH) -o $@ $< | 60 | $(CC) -c $(CFLAGS) $(INCPATH) -o $@ $< |
61 | 61 | ||
62 | ####### Build rules | 62 | ####### Build rules |
63 | 63 | ||
64 | 64 | ||
65 | all: $(DESTDIR)$(TARGET) | 65 | all: $(DESTDIR)$(TARGET) |
66 | 66 | ||
67 | $(DESTDIR)$(TARGET): $(UICDECLS) $(OBJECTS) $(OBJMOC) $(SUBLIBS) | 67 | $(DESTDIR)$(TARGET): $(UICDECLS) $(OBJECTS) $(OBJMOC) $(SUBLIBS) |
68 | $(SYSCONF_LINK) $(LFLAGS) -o $(DESTDIR)$(TARGET) $(OBJECTS) $(OBJMOC) $(LIBS) | 68 | $(SYSCONF_LINK) $(LFLAGS) -o $(DESTDIR)$(TARGET) $(OBJECTS) $(OBJMOC) $(LIBS) |
69 | 69 | ||
70 | moc: $(SRCMOC) | 70 | moc: $(SRCMOC) |
71 | 71 | ||
72 | tmake: Makefile.in | 72 | tmake: Makefile.in |
73 | 73 | ||
74 | Makefile.in: minesweep.pro | 74 | Makefile.in: minesweep.pro |
75 | tmake minesweep.pro -o Makefile.in | 75 | tmake minesweep.pro -o Makefile.in |
76 | 76 | ||
77 | clean: | 77 | clean: |
78 | -rm -f $(OBJECTS) $(OBJMOC) $(SRCMOC) $(UICIMPLS) $(UICDECLS) | 78 | -rm -f $(OBJECTS) $(OBJMOC) $(SRCMOC) $(UICIMPLS) $(UICDECLS) |
79 | -rm -f *~ core | 79 | -rm -f *~ core |
80 | -rm -f allmoc.cpp | 80 | -rm -f allmoc.cpp |
81 | 81 | ||
82 | ####### Extension Modules | 82 | ####### Extension Modules |
83 | 83 | ||
84 | listpromodules: | 84 | listpromodules: |
85 | @echo | 85 | @echo |
86 | 86 | ||
87 | listallmodules: | 87 | listallmodules: |
88 | @echo | 88 | @echo |
89 | 89 | ||
90 | listaddonpromodules: | 90 | listaddonpromodules: |
91 | @echo | 91 | @echo |
92 | 92 | ||
93 | listaddonentmodules: | 93 | listaddonentmodules: |
94 | @echo | 94 | @echo |
95 | 95 | ||
96 | 96 | ||
97 | REQUIRES= | 97 | REQUIRES= |
98 | 98 | ||
99 | ####### Sub-libraries | 99 | ####### Sub-libraries |
100 | 100 | ||
101 | 101 | ||
102 | ###### Combined headers | 102 | ###### Combined headers |
103 | 103 | ||
104 | 104 | ||
105 | 105 | ||
106 | ####### Compile | 106 | ####### Compile |
107 | 107 | ||
108 | main.o: main.cpp \ | 108 | main.o: main.cpp \ |
109 | minesweep.h \ | 109 | minesweep.h \ |
110 | /home/kergoth/roms/openzaurus/buildroot-oz/build/opie/include/qpe/qpeapplication.h | 110 | $(OPIEDIR)/include/qpe/qpeapplication.h |
111 | 111 | ||
112 | minefield.o: minefield.cpp \ | 112 | minefield.o: minefield.cpp \ |
113 | minefield.h \ | 113 | minefield.h \ |
114 | /home/kergoth/roms/openzaurus/buildroot-oz/build/opie/include/qpe/config.h | 114 | $(OPIEDIR)/include/qpe/config.h |
115 | 115 | ||
116 | minesweep.o: minesweep.cpp \ | 116 | minesweep.o: minesweep.cpp \ |
117 | minesweep.h \ | 117 | minesweep.h \ |
118 | minefield.h \ | 118 | minefield.h \ |
119 | /home/kergoth/roms/openzaurus/buildroot-oz/build/opie/include/qpe/resource.h \ | 119 | $(OPIEDIR)/include/qpe/resource.h \ |
120 | /home/kergoth/roms/openzaurus/buildroot-oz/build/opie/include/qpe/config.h \ | 120 | $(OPIEDIR)/include/qpe/config.h \ |
121 | /home/kergoth/roms/openzaurus/buildroot-oz/build/opie/include/qpe/qpetoolbar.h \ | 121 | $(OPIEDIR)/include/qpe/qpetoolbar.h \ |
122 | /home/kergoth/roms/openzaurus/buildroot-oz/build/opie/include/qpe/qpemenubar.h | 122 | $(OPIEDIR)/include/qpe/qpemenubar.h |
123 | 123 | ||
124 | moc_minefield.o: moc_minefield.cpp \ | 124 | moc_minefield.o: moc_minefield.cpp \ |
125 | minefield.h | 125 | minefield.h |
126 | 126 | ||
127 | moc_minesweep.o: moc_minesweep.cpp \ | 127 | moc_minesweep.o: moc_minesweep.cpp \ |
128 | minesweep.h | 128 | minesweep.h |
129 | 129 | ||
130 | moc_minefield.cpp: minefield.h | 130 | moc_minefield.cpp: minefield.h |
131 | $(MOC) minefield.h -o moc_minefield.cpp | 131 | $(MOC) minefield.h -o moc_minefield.cpp |
132 | 132 | ||
133 | moc_minesweep.cpp: minesweep.h | 133 | moc_minesweep.cpp: minesweep.h |
134 | $(MOC) minesweep.h -o moc_minesweep.cpp | 134 | $(MOC) minesweep.h -o moc_minesweep.cpp |
135 | 135 | ||
136 | 136 | ||