|
diff --git a/Makefile b/Makefile index f61f940..7646446 100644 --- a/ Makefile+++ b/ Makefile |
|
@@ -105,6 +105,6 @@ endif |
105 | all clean lupdate lrelease install ipk: $(SUBDIRS) |
105 | all clean lupdate lrelease install ipk: $(SUBDIRS) |
106 | |
106 | |
107 | $(subdir-y) : $(if $(CONFIG_LIBQPE),$(QTDIR)/stamp-headers) \ |
107 | $(subdir-y) : $(if $(CONFIG_LIBQPE),$(QTDIR)/stamp-headers $(OPIEDIR)/stamp-headers) \ |
108 | $(if $(CONFIG_LIBQPE-X11),$(QTDIR)/stamp-headers-x11) \ |
108 | $(if $(CONFIG_LIBQPE-X11),$(QTDIR)/stamp-headers-x11 $(OPIEDIR)/stamp-headers-x11 ) \ |
109 | $(TOPDIR)/library/custom.h |
109 | $(TOPDIR)/library/custom.h |
110 | |
110 | |
|
|
|
|
@@ -27,4 +27,17 @@ $(TOPDIR)/.depends.cfgs: |
27 | $(QTDIR)/stamp-headers : |
27 | $(QTDIR)/stamp-headers : |
28 | @-rm -f $@* |
28 | @-rm -f $@* |
| |
29 | ( cd $(QTDIR)/include; \ |
| |
30 | $(patsubst %,ln -sf ../src/kernel/%;,qgfx_qws.h qwsmouse_qws.h \ |
| |
31 | qcopchannel_qws.h qwindowsystem_qws.h \ |
| |
32 | qfontmanager_qws.h qwsdefaultdecoration_qws.h)) |
| |
33 | touch $@ |
| |
34 | |
| |
35 | $(QTDIR)/stamp-headers-x11 : |
| |
36 | @-rm -f $@* |
| |
37 | cd $(QTDIR)/include; $(patsubst %,ln -sf $(OPIEDIR)/x11/libqpe-x11/qt/%;,qgfx_qws.h qwsmouse_qws.h qcopchannel_qws.h qwindowsystem_qws.h qfontmanager_qws.h qwsdefaultdecoration_qws.h) |
| |
38 | touch $@ |
| |
39 | |
| |
40 | $(OPIEDIR)/stamp-headers : |
| |
41 | @-rm -f $@* |
29 | mkdir -p $(TOPDIR)/include/qpe $(TOPDIR)/include/qtopia \ |
42 | mkdir -p $(TOPDIR)/include/qpe $(TOPDIR)/include/qtopia \ |
30 | $(TOPDIR)/include/opie $(TOPDIR)/include/qtopia/private |
43 | $(TOPDIR)/include/opie $(TOPDIR)/include/qtopia/private |
@@ -38,11 +51,7 @@ $(QTDIR)/stamp-headers : |
38 | ln -sf ../../libopie/$$generatedHeader $$generatedHeader; done ) |
51 | ln -sf ../../libopie/$$generatedHeader $$generatedHeader; done ) |
39 | ln -sf ../../library/custom.h $(TOPDIR)/include/qpe/custom.h |
52 | ln -sf ../../library/custom.h $(TOPDIR)/include/qpe/custom.h |
40 | ( cd $(QTDIR)/include; \ |
| |
41 | $(patsubst %,ln -sf ../src/kernel/%;,qgfx_qws.h qwsmouse_qws.h \ |
| |
42 | qcopchannel_qws.h qwindowsystem_qws.h \ |
| |
43 | qfontmanager_qws.h qwsdefaultdecoration_qws.h)) |
| |
44 | touch $@ |
53 | touch $@ |
45 | |
54 | |
46 | $(QTDIR)/stamp-headers-x11 : |
55 | $(OPIEDIR)/stamp-headers-x11 : |
47 | @-rm -f $@* |
56 | @-rm -f $@* |
48 | mkdir -p $(TOPDIR)/include/qpe $(TOPDIR)/include/qtopia \ |
57 | mkdir -p $(TOPDIR)/include/qpe $(TOPDIR)/include/qtopia \ |
@@ -58,5 +67,4 @@ $(QTDIR)/stamp-headers-x11 : |
58 | ln -sf ../../library/custom.h $(TOPDIR)/include/qpe/custom.h |
67 | ln -sf ../../library/custom.h $(TOPDIR)/include/qpe/custom.h |
59 | ( cd include/qpe; ln -sf ../../x11/libqpe-x11/qpe/*.h .; ) |
68 | ( cd include/qpe; ln -sf ../../x11/libqpe-x11/qpe/*.h .; ) |
60 | cd $(QTDIR)/include; $(patsubst %,ln -sf $(OPIEDIR)/x11/libqpe-x11/qt/%;,qgfx_qws.h qwsmouse_qws.h qcopchannel_qws.h qwindowsystem_qws.h qfontmanager_qws.h qwsdefaultdecoration_qws.h) |
| |
61 | touch $@ |
69 | touch $@ |
62 | |
70 | |
|