author | kergoth <kergoth> | 2002-11-01 16:19:45 (UTC) |
---|---|---|
committer | kergoth <kergoth> | 2002-11-01 16:19:45 (UTC) |
commit | ebd6adcd2f72935f0ee7af7485c75c34ac3389a3 (patch) (unidiff) | |
tree | 493006e9041f8323956cab2cd59539d06aa1b9be /qmake | |
parent | f351da898f4dce9ad3fd8ee76d84912365dcb5ac (diff) | |
download | opie-ebd6adcd2f72935f0ee7af7485c75c34ac3389a3.zip opie-ebd6adcd2f72935f0ee7af7485c75c34ac3389a3.tar.gz opie-ebd6adcd2f72935f0ee7af7485c75c34ac3389a3.tar.bz2 |
Further path corrections
-rw-r--r-- | qmake/Makefile | 107 |
1 files changed, 53 insertions, 54 deletions
diff --git a/qmake/Makefile b/qmake/Makefile index faaeafe..86dd77d 100644 --- a/qmake/Makefile +++ b/qmake/Makefile | |||
@@ -1,4 +1,3 @@ | |||
1 | TOPDIR=$(shell pwd) | ||
2 | QMAKESPECSDIR=$(OPIEDIR)/mkspecs | 1 | QMAKESPECSDIR=$(OPIEDIR)/mkspecs |
3 | 2 | ||
4 | ######################################################################## | 3 | ######################################################################## |
@@ -21,8 +20,8 @@ QOBJS=qstring.o qtextstream.o qiodevice.o qglobal.o qgdict.o qcstring.o \ | |||
21 | 20 | ||
22 | CFLAGS= \ | 21 | CFLAGS= \ |
23 | -I. -Igenerators -Igenerators/unix -Igenerators/win32 -Igenerators/mac \ | 22 | -I. -Igenerators -Igenerators/unix -Igenerators/win32 -Igenerators/mac \ |
24 | -I$(TOPDIR)/include -I$(TOPDIR)/include/qmake -I$(QMAKESPECSDIR)/default \ | 23 | -I$(OPIEDIR)/qmake/include -I$(OPIEDIR)/qmake/include/qmake -I$(QMAKESPECSDIR)/default \ |
25 | -I$(TOPDIR)/include/private \ | 24 | -I$(OPIEDIR)/qmake/include/private \ |
26 | -DQT_NO_TEXTCODEC -DQT_LITE_COMPONENT -DQT_NO_STL -DQT_NO_COMPRESS -I$(QMAKESPECSDIR)/qws/linux-x86-g++ | 25 | -DQT_NO_TEXTCODEC -DQT_LITE_COMPONENT -DQT_NO_STL -DQT_NO_COMPRESS -I$(QMAKESPECSDIR)/qws/linux-x86-g++ |
27 | CXXFLAGS= $(CFLAGS) | 26 | CXXFLAGS= $(CFLAGS) |
28 | LFLAGS= | 27 | LFLAGS= |
@@ -36,7 +35,7 @@ install: qmake | |||
36 | [ -d $(INSTALL_ROOT)$(QTDIR)/bin ] || mkdir -p $(INSTALL_ROOT)$(QTDIR)/bin | 35 | [ -d $(INSTALL_ROOT)$(QTDIR)/bin ] || mkdir -p $(INSTALL_ROOT)$(QTDIR)/bin |
37 | -cp -f $(QTDIR)/bin/qmake $(INSTALL_ROOT)$(QTDIR)/bin | 36 | -cp -f $(QTDIR)/bin/qmake $(INSTALL_ROOT)$(QTDIR)/bin |
38 | [ -d $(INSTALL_ROOT)$(QTDIR) ] || mkdir -p $(INSTALL_ROOT)$(QTDIR) | 37 | [ -d $(INSTALL_ROOT)$(QTDIR) ] || mkdir -p $(INSTALL_ROOT)$(QTDIR) |
39 | -cp -r -f $(QMAKESPECDIR) $(INSTALL_ROOT)$(QTDIR) | 38 | -cp -r -f $(QMAKESPECSDIR) $(INSTALL_ROOT)$(QTDIR) |
40 | 39 | ||
41 | clean:: | 40 | clean:: |
42 | rm -f $(OBJS) $(QOBJS) | 41 | rm -f $(OBJS) $(QOBJS) |
@@ -45,80 +44,80 @@ distclean:: clean | |||
45 | rm -rf qmake .deps | 44 | rm -rf qmake .deps |
46 | 45 | ||
47 | # don't use optimization for these | 46 | # don't use optimization for these |
48 | qtextstream.o: $(TOPDIR)/tools/qtextstream.cpp | 47 | qtextstream.o: $(OPIEDIR)/qmake/tools/qtextstream.cpp |
49 | $(CXX) -c -o $@ $(CXXFLAGS) $(TOPDIR)/tools/qtextstream.cpp | 48 | $(CXX) -c -o $@ $(CXXFLAGS) $(OPIEDIR)/qmake/tools/qtextstream.cpp |
50 | 49 | ||
51 | qiodevice.o: $(TOPDIR)/tools/qiodevice.cpp | 50 | qiodevice.o: $(OPIEDIR)/qmake/tools/qiodevice.cpp |
52 | $(CXX) -c -o $@ $(CXXFLAGS) $(TOPDIR)/tools/qiodevice.cpp | 51 | $(CXX) -c -o $@ $(CXXFLAGS) $(OPIEDIR)/qmake/tools/qiodevice.cpp |
53 | 52 | ||
54 | qglobal.o: $(TOPDIR)/tools/qglobal.cpp | 53 | qglobal.o: $(OPIEDIR)/qmake/tools/qglobal.cpp |
55 | $(CXX) -c -o $@ $(CXXFLAGS) $(TOPDIR)/tools/qglobal.cpp | 54 | $(CXX) -c -o $@ $(CXXFLAGS) $(OPIEDIR)/qmake/tools/qglobal.cpp |
56 | 55 | ||
57 | qgdict.o: $(TOPDIR)/tools/qgdict.cpp | 56 | qgdict.o: $(OPIEDIR)/qmake/tools/qgdict.cpp |
58 | $(CXX) -c -o $@ $(CXXFLAGS) $(TOPDIR)/tools/qgdict.cpp | 57 | $(CXX) -c -o $@ $(CXXFLAGS) $(OPIEDIR)/qmake/tools/qgdict.cpp |
59 | 58 | ||
60 | qcstring.o: $(TOPDIR)/tools/qcstring.cpp | 59 | qcstring.o: $(OPIEDIR)/qmake/tools/qcstring.cpp |
61 | $(CXX) -c -o $@ $(CXXFLAGS) $(TOPDIR)/tools/qcstring.cpp | 60 | $(CXX) -c -o $@ $(CXXFLAGS) $(OPIEDIR)/qmake/tools/qcstring.cpp |
62 | 61 | ||
63 | qstring.o: $(TOPDIR)/tools/qstring.cpp | 62 | qstring.o: $(OPIEDIR)/qmake/tools/qstring.cpp |
64 | $(CXX) -c -o $@ $(CXXFLAGS) $(TOPDIR)/tools/qstring.cpp | 63 | $(CXX) -c -o $@ $(CXXFLAGS) $(OPIEDIR)/qmake/tools/qstring.cpp |
65 | 64 | ||
66 | qdatastream.o: $(TOPDIR)/tools/qdatastream.cpp | 65 | qdatastream.o: $(OPIEDIR)/qmake/tools/qdatastream.cpp |
67 | $(CXX) -c -o $@ $(CXXFLAGS) $(TOPDIR)/tools/qdatastream.cpp | 66 | $(CXX) -c -o $@ $(CXXFLAGS) $(OPIEDIR)/qmake/tools/qdatastream.cpp |
68 | 67 | ||
69 | qgarray.o: $(TOPDIR)/tools/qgarray.cpp | 68 | qgarray.o: $(OPIEDIR)/qmake/tools/qgarray.cpp |
70 | $(CXX) -c -o $@ $(CXXFLAGS) $(TOPDIR)/tools/qgarray.cpp | 69 | $(CXX) -c -o $@ $(CXXFLAGS) $(OPIEDIR)/qmake/tools/qgarray.cpp |
71 | 70 | ||
72 | qbuffer.o: $(TOPDIR)/tools/qbuffer.cpp | 71 | qbuffer.o: $(OPIEDIR)/qmake/tools/qbuffer.cpp |
73 | $(CXX) -c -o $@ $(CXXFLAGS) $(TOPDIR)/tools/qbuffer.cpp | 72 | $(CXX) -c -o $@ $(CXXFLAGS) $(OPIEDIR)/qmake/tools/qbuffer.cpp |
74 | 73 | ||
75 | qglist.o: $(TOPDIR)/tools/qglist.cpp | 74 | qglist.o: $(OPIEDIR)/qmake/tools/qglist.cpp |
76 | $(CXX) -c -o $@ $(CXXFLAGS) $(TOPDIR)/tools/qglist.cpp | 75 | $(CXX) -c -o $@ $(CXXFLAGS) $(OPIEDIR)/qmake/tools/qglist.cpp |
77 | 76 | ||
78 | qptrcollection.o: $(TOPDIR)/tools/qptrcollection.cpp | 77 | qptrcollection.o: $(OPIEDIR)/qmake/tools/qptrcollection.cpp |
79 | $(CXX) -c -o $@ $(CXXFLAGS) $(TOPDIR)/tools/qptrcollection.cpp | 78 | $(CXX) -c -o $@ $(CXXFLAGS) $(OPIEDIR)/qmake/tools/qptrcollection.cpp |
80 | 79 | ||
81 | qfile.o: $(TOPDIR)/tools/qfile.cpp | 80 | qfile.o: $(OPIEDIR)/qmake/tools/qfile.cpp |
82 | $(CXX) -c -o $@ $(CXXFLAGS) $(TOPDIR)/tools/qfile.cpp | 81 | $(CXX) -c -o $@ $(CXXFLAGS) $(OPIEDIR)/qmake/tools/qfile.cpp |
83 | 82 | ||
84 | qfile_unix.o: $(TOPDIR)/tools/qfile_unix.cpp | 83 | qfile_unix.o: $(OPIEDIR)/qmake/tools/qfile_unix.cpp |
85 | $(CXX) -c -o $@ $(CXXFLAGS) $(TOPDIR)/tools/qfile_unix.cpp | 84 | $(CXX) -c -o $@ $(CXXFLAGS) $(OPIEDIR)/qmake/tools/qfile_unix.cpp |
86 | 85 | ||
87 | qregexp.o: $(TOPDIR)/tools/qregexp.cpp | 86 | qregexp.o: $(OPIEDIR)/qmake/tools/qregexp.cpp |
88 | $(CXX) -c -o $@ $(CXXFLAGS) $(TOPDIR)/tools/qregexp.cpp | 87 | $(CXX) -c -o $@ $(CXXFLAGS) $(OPIEDIR)/qmake/tools/qregexp.cpp |
89 | 88 | ||
90 | qgvector.o: $(TOPDIR)/tools/qgvector.cpp | 89 | qgvector.o: $(OPIEDIR)/qmake/tools/qgvector.cpp |
91 | $(CXX) -c -o $@ $(CXXFLAGS) $(TOPDIR)/tools/qgvector.cpp | 90 | $(CXX) -c -o $@ $(CXXFLAGS) $(OPIEDIR)/qmake/tools/qgvector.cpp |
92 | 91 | ||
93 | qgcache.o: $(TOPDIR)/tools/qgcache.cpp | 92 | qgcache.o: $(OPIEDIR)/qmake/tools/qgcache.cpp |
94 | $(CXX) -c -o $@ $(CXXFLAGS) $(TOPDIR)/tools/qgcache.cpp | 93 | $(CXX) -c -o $@ $(CXXFLAGS) $(OPIEDIR)/qmake/tools/qgcache.cpp |
95 | 94 | ||
96 | qbitarray.o: $(TOPDIR)/tools/qbitarray.cpp | 95 | qbitarray.o: $(OPIEDIR)/qmake/tools/qbitarray.cpp |
97 | $(CXX) -c -o $@ $(CXXFLAGS) $(TOPDIR)/tools/qbitarray.cpp | 96 | $(CXX) -c -o $@ $(CXXFLAGS) $(OPIEDIR)/qmake/tools/qbitarray.cpp |
98 | 97 | ||
99 | qdir.o: $(TOPDIR)/tools/qdir.cpp | 98 | qdir.o: $(OPIEDIR)/qmake/tools/qdir.cpp |
100 | $(CXX) -c -o $@ $(CXXFLAGS) $(TOPDIR)/tools/qdir.cpp | 99 | $(CXX) -c -o $@ $(CXXFLAGS) $(OPIEDIR)/qmake/tools/qdir.cpp |
101 | 100 | ||
102 | qfileinfo_unix.o: $(TOPDIR)/tools/qfileinfo_unix.cpp | 101 | qfileinfo_unix.o: $(OPIEDIR)/qmake/tools/qfileinfo_unix.cpp |
103 | $(CXX) -c -o $@ $(CXXFLAGS) $(TOPDIR)/tools/qfileinfo_unix.cpp | 102 | $(CXX) -c -o $@ $(CXXFLAGS) $(OPIEDIR)/qmake/tools/qfileinfo_unix.cpp |
104 | 103 | ||
105 | qdir_unix.o: $(TOPDIR)/tools/qdir_unix.cpp | 104 | qdir_unix.o: $(OPIEDIR)/qmake/tools/qdir_unix.cpp |
106 | $(CXX) -c -o $@ $(CXXFLAGS) $(TOPDIR)/tools/qdir_unix.cpp | 105 | $(CXX) -c -o $@ $(CXXFLAGS) $(OPIEDIR)/qmake/tools/qdir_unix.cpp |
107 | 106 | ||
108 | qfileinfo.o: $(TOPDIR)/tools/qfileinfo.cpp | 107 | qfileinfo.o: $(OPIEDIR)/qmake/tools/qfileinfo.cpp |
109 | $(CXX) -c -o $@ $(CXXFLAGS) $(TOPDIR)/tools/qfileinfo.cpp | 108 | $(CXX) -c -o $@ $(CXXFLAGS) $(OPIEDIR)/qmake/tools/qfileinfo.cpp |
110 | 109 | ||
111 | qdatetime.o: $(TOPDIR)/tools/qdatetime.cpp | 110 | qdatetime.o: $(OPIEDIR)/qmake/tools/qdatetime.cpp |
112 | $(CXX) -c -o $@ $(CXXFLAGS) $(TOPDIR)/tools/qdatetime.cpp | 111 | $(CXX) -c -o $@ $(CXXFLAGS) $(OPIEDIR)/qmake/tools/qdatetime.cpp |
113 | 112 | ||
114 | qstringlist.o: $(TOPDIR)/tools/qstringlist.cpp | 113 | qstringlist.o: $(OPIEDIR)/qmake/tools/qstringlist.cpp |
115 | $(CXX) -c -o $@ $(CXXFLAGS) $(TOPDIR)/tools/qstringlist.cpp | 114 | $(CXX) -c -o $@ $(CXXFLAGS) $(OPIEDIR)/qmake/tools/qstringlist.cpp |
116 | 115 | ||
117 | qmap.o: $(TOPDIR)/tools/qmap.cpp | 116 | qmap.o: $(OPIEDIR)/qmake/tools/qmap.cpp |
118 | $(CXX) -c -o $@ $(CXXFLAGS) $(TOPDIR)/tools/qmap.cpp | 117 | $(CXX) -c -o $@ $(CXXFLAGS) $(OPIEDIR)/qmake/tools/qmap.cpp |
119 | 118 | ||
120 | qconfig.o: $(TOPDIR)/tools/qconfig.cpp | 119 | qconfig.o: $(OPIEDIR)/qmake/tools/qconfig.cpp |
121 | $(CXX) -c -o $@ $(CXXFLAGS) $(TOPDIR)/tools/qconfig.cpp | 120 | $(CXX) -c -o $@ $(CXXFLAGS) $(OPIEDIR)/qmake/tools/qconfig.cpp |
122 | 121 | ||
123 | winmakefile.o: generators/win32/winmakefile.cpp | 122 | winmakefile.o: generators/win32/winmakefile.cpp |
124 | $(CXX) -c -o $@ $(CXXFLAGS) generators/win32/winmakefile.cpp | 123 | $(CXX) -c -o $@ $(CXXFLAGS) generators/win32/winmakefile.cpp |