-rw-r--r-- | Makefile.test | 5 | ||||
-rw-r--r-- | Rules.make | 20 |
2 files changed, 24 insertions, 1 deletions
diff --git a/Makefile.test b/Makefile.test index 122e555..6753ee1 100644 --- a/Makefile.test +++ b/Makefile.test @@ -87,4 +87,7 @@ endif all : $(subdir-y) - + +$(subdir-y) : $(TOPDIR)/stamp-headers + + include $(TOPDIR)/Rules.make @@ -25,7 +25,27 @@ $(TOPDIR)/.depends.cfgs: @-rm -f dirs +$(TOPDIR)/stamp-headers : + mkdir -p $(TOPDIR)/include/qpe $(TOPDIR)/include/qtopia \ + $(TOPDIR)/include/opie $(TOPDIR)/include/qtopia/private + ( cd include/qpe && rm -f *.h; ln -s ../../library/*.h .; ln -s ../../library/backend/*.h .; rm -f *_p.h; ) + ( cd include/qtopia && rm -f *.h; ln -s ../../library/*.h .; ) + ( cd include/qtopia/private && rm -f *.h; ln -s ../../../library/backend/*.h .; ) + ( cd include/opie && rm -f *.h; ln -s ../../libopie/*.h .; rm -f *_p.h; ) + ( cd include/opie && ln -s ../../libsql/*.h .; ) + ( cd include/opie && ln -s ../../libopie/pim/*.h .; ) + ( cd include/opie; for generatedHeader in `cd ../../libopie; ls *.ui | sed -e "s,\.ui,\.h,g"`; do \ + ln -s ../../libopie/$$generatedHeader $$generatedHeader; done ) + touch $@ + + + $(TOPDIR)/scripts/lxdialog/lxdialog $(TOPDIR)/scripts/kconfig/conf scripts/kconfig/conf $(TOPDIR)/scripts/kconfig/mconf scripts/kconfig/mconf $(TOPDIR)/scripts/kconfig/qconf scripts/kconfig/qconf $(TOPDIR)/qmake/qmake : $(call descend,$(shell dirname $@),$(shell basename $@)) +$(TOPDIR)/qmake/qmake : $(TOPDIR)/mkspecs/default + +$(TOPDIR)/mkspecs/default : + ln -sf linux-g++ $@ + ## general rules ## |