summaryrefslogtreecommitdiff
authorzecke <zecke>2002-02-05 02:34:12 (UTC)
committer zecke <zecke>2002-02-05 02:34:12 (UTC)
commite77f345ca9812cec21e9df7f1fcec3f6110a66ff (patch) (unidiff)
tree9cba62493550365c2b3053c95fc63da414c3446b
parentaf8212fa21bf4c747707ee314ba838b46bd8211d (diff)
downloadopie-e77f345ca9812cec21e9df7f1fcec3f6110a66ff.zip
opie-e77f345ca9812cec21e9df7f1fcec3f6110a66ff.tar.gz
opie-e77f345ca9812cec21e9df7f1fcec3f6110a66ff.tar.bz2
Compile fix
/home/ke*/..openzaurus/.../include/qpe -> $(OPIEDIR)/include/qpe
Diffstat (more/less context) (ignore whitespace changes)
-rw-r--r--noncore/games/minesweep/Makefile.in12
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
@@ -78,59 +78,59 @@ 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
84listpromodules: 84listpromodules:
85 @echo 85 @echo
86 86
87listallmodules: 87listallmodules:
88 @echo 88 @echo
89 89
90listaddonpromodules: 90listaddonpromodules:
91 @echo 91 @echo
92 92
93listaddonentmodules: 93listaddonentmodules:
94 @echo 94 @echo
95 95
96 96
97REQUIRES= 97REQUIRES=
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
108main.o: main.cpp \ 108main.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
112minefield.o: minefield.cpp \ 112minefield.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
116minesweep.o: minesweep.cpp \ 116minesweep.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
124moc_minefield.o: moc_minefield.cpp \ 124moc_minefield.o: moc_minefield.cpp \
125 minefield.h 125 minefield.h
126 126
127moc_minesweep.o: moc_minesweep.cpp \ 127moc_minesweep.o: moc_minesweep.cpp \
128 minesweep.h 128 minesweep.h
129 129
130moc_minefield.cpp: minefield.h 130moc_minefield.cpp: minefield.h
131 $(MOC) minefield.h -o moc_minefield.cpp 131 $(MOC) minefield.h -o moc_minefield.cpp
132 132
133moc_minesweep.cpp: minesweep.h 133moc_minesweep.cpp: minesweep.h
134 $(MOC) minesweep.h -o moc_minesweep.cpp 134 $(MOC) minesweep.h -o moc_minesweep.cpp
135 135
136 136