author | zecke <zecke> | 2004-04-08 11:20:25 (UTC) |
---|---|---|
committer | zecke <zecke> | 2004-04-08 11:20:25 (UTC) |
commit | 30cd4f984ea142ae4320de5718d58b7cf083befb (patch) (unidiff) | |
tree | f2335257392536c77d018c6653c495a235b0638d /Rules.make | |
parent | 2ab70064958916733daf1b5f095cef562b2e9163 (diff) | |
download | opie-30cd4f984ea142ae4320de5718d58b7cf083befb.zip opie-30cd4f984ea142ae4320de5718d58b7cf083befb.tar.gz opie-30cd4f984ea142ae4320de5718d58b7cf083befb.tar.bz2 |
Write out the LIB and INC Dir for the dependencies into
the .pro
Now the apps can pick it up if they want
-rw-r--r-- | Rules.make | 25 |
1 files changed, 25 insertions, 0 deletions
@@ -52,48 +52,73 @@ ifeq ($(CONFIG_OPIE_NO_BUILTIN_SHUTDOWN),y) | |||
52 | echo DEFINES += OPIE_NO_BUILTIN_SHUTDOWN >> $@ | 52 | echo DEFINES += OPIE_NO_BUILTIN_SHUTDOWN >> $@ |
53 | endif | 53 | endif |
54 | ifeq ($(CONFIG_OPIE_NO_BUILTIN_CALIBRATE),y) | 54 | ifeq ($(CONFIG_OPIE_NO_BUILTIN_CALIBRATE),y) |
55 | echo DEFINES += OPIE_NO_BUILTIN_CALIBRATE >> $@ | 55 | echo DEFINES += OPIE_NO_BUILTIN_CALIBRATE >> $@ |
56 | endif | 56 | endif |
57 | ifeq ($(CONFIG_USE_REALTIME_AUDIO_THREAD),y) | 57 | ifeq ($(CONFIG_USE_REALTIME_AUDIO_THREAD),y) |
58 | echo DEFINES += USE_REALTIME_AUDIO_THREAD >> $@ | 58 | echo DEFINES += USE_REALTIME_AUDIO_THREAD >> $@ |
59 | endif | 59 | endif |
60 | ifeq ($(CONFIG_QT_QWS_ALLOW_CLOCK),y) | 60 | ifeq ($(CONFIG_QT_QWS_ALLOW_CLOCK),y) |
61 | echo DEFINES += QT_QWS_ALLOW_OVERCLOCK >> $@ | 61 | echo DEFINES += QT_QWS_ALLOW_OVERCLOCK >> $@ |
62 | endif | 62 | endif |
63 | ifeq ($(CONFIG_OPIE_HIGH_RES_SMALL_PHY),y) | 63 | ifeq ($(CONFIG_OPIE_HIGH_RES_SMALL_PHY),y) |
64 | echo DEFINES += OPIE_HIGH_RES_SMALL_PHY >> $@ | 64 | echo DEFINES += OPIE_HIGH_RES_SMALL_PHY >> $@ |
65 | endif | 65 | endif |
66 | ifeq ($(CONFIG_OPIE_NEW_ALLOC),y) | 66 | ifeq ($(CONFIG_OPIE_NEW_ALLOC),y) |
67 | echo DEFINES += OPIE_NEW_MALLOC >> $@ | 67 | echo DEFINES += OPIE_NEW_MALLOC >> $@ |
68 | endif | 68 | endif |
69 | ifeq ($(CONFIG_OPIE_NO_SOUND_PCM_READ_BITS),y) | 69 | ifeq ($(CONFIG_OPIE_NO_SOUND_PCM_READ_BITS),y) |
70 | echo DEFINES += OPIE_NO_SOUND_PCM_READ_BITS >> $@ | 70 | echo DEFINES += OPIE_NO_SOUND_PCM_READ_BITS >> $@ |
71 | endif | 71 | endif |
72 | echo DEFINES += OPIE_SOUND_FRAGMENT_SHIFT=$(CONFIG_OPIE_SOUND_FRAGMENT_SHIFT) >> $@ | 72 | echo DEFINES += OPIE_SOUND_FRAGMENT_SHIFT=$(CONFIG_OPIE_SOUND_FRAGMENT_SHIFT) >> $@ |
73 | ifeq ($(CONFIG_OPIE_WE_VERSION_OVERRIDE),y) | 73 | ifeq ($(CONFIG_OPIE_WE_VERSION_OVERRIDE),y) |
74 | echo DEFINES += OPIE_WE_VERSION=$(CONFIG_OPIE_WE_VERSION) >> $@ | 74 | echo DEFINES += OPIE_WE_VERSION=$(CONFIG_OPIE_WE_VERSION) >> $@ |
75 | endif | 75 | endif |
76 | # Write LIB dirs and INC dirs... | ||
77 | ifeq ($(CONFIG_LIBETPAN_DEP),y) | ||
78 | echo LIBETPAN_LIB_DIR = $(CONFIG_LIBETPAN_LIB_DIR) >> $@ | ||
79 | echo LIBETPAN_INC_DIR = $(CONFIG_LIBETPAN_INC_DIR) >> $@ | ||
80 | endif | ||
81 | ifeq ($(CONFIG_LIBPCAP_DEP),y) | ||
82 | echo LIBPCAP_LIB_DIR = $(CONFIG_LIBPCAP_LIB_DIR) >> $@ | ||
83 | echo LIBPCAP_INC_DIR = $(CONFIG_LIBPCAP_INC_DIR) >> $@ | ||
84 | endif | ||
85 | ifeq ($(CONFIG_LIBSQLITE_DEP),y) | ||
86 | echo LIBSQLITE_LIB_DIR = $(CONFIG_LIBSQLITE_LIB_DIR) >> $@ | ||
87 | echo LIBSQLITE_INC_DIR = $(CONFIG_LIBSQLITE_INC_DIR) >> $@ | ||
88 | endif | ||
89 | ifeq ($(CONFIG_LIBXINE_DEP),y) | ||
90 | echo LIBXINE_LIB_DIR = $(CONFIG_LIBXINE_LIB_DIR) >> $@ | ||
91 | echo LIBXINE_INC_DIR = $(CONFIG_LIBXINE_INC_DIR) >> $@ | ||
92 | endif | ||
93 | ifeq ($(CONFIG_LIBIPK_DEP),y) | ||
94 | echo LIBIPK_LIB_DIR = $(CONFIG_LIBIPK_LIB_DIR) >> $@ | ||
95 | echo LIBIPK_INC_DIR = $(CONFIG_LIBIPK_INC_DIR) >> $@ | ||
96 | endif | ||
97 | ifeq ($(CONFIG_LIBSDK_DEP),y) | ||
98 | echo LIBSDL_LIB_DIR = $(CONFIG_LIBSDL_LIB_DIR) >> $@ | ||
99 | echo LIBSDL_INC_DIR = $(CONFIG_LIBSDL_INC_DIR) >> $@ | ||
100 | endif | ||
76 | $(TOPDIR)/.depends : $(shell if [ -e $(TOPDIR)/config.in ]\; then echo $(TOPDIR)/config.in\; fi\;) $(TOPDIR)/.config $(TOPDIR)/packages | 101 | $(TOPDIR)/.depends : $(shell if [ -e $(TOPDIR)/config.in ]\; then echo $(TOPDIR)/config.in\; fi\;) $(TOPDIR)/.config $(TOPDIR)/packages |
77 | @echo Generating dependency information... | 102 | @echo Generating dependency information... |
78 | # add to subdir-y, and add descend rules | 103 | # add to subdir-y, and add descend rules |
79 | @cat $(TOPDIR)/packages | grep -v '^#' | \ | 104 | @cat $(TOPDIR)/packages | grep -v '^#' | \ |
80 | awk '{print \ | 105 | awk '{print \ |
81 | ".PHONY : " $$2 "\n" \ | 106 | ".PHONY : " $$2 "\n" \ |
82 | "subdir-$$(" $$1 ") += " $$2 "\n\n"; \ | 107 | "subdir-$$(" $$1 ") += " $$2 "\n\n"; \ |
83 | print $$2 " : " $$2 "/Makefile\n\t$$(call descend,$$@,$(filter-out $$@,$$(filter-out $$@,$$(MAKECMDGOALS))))\n"; }' > $(TOPDIR)/.depends | 108 | print $$2 " : " $$2 "/Makefile\n\t$$(call descend,$$@,$(filter-out $$@,$$(filter-out $$@,$$(MAKECMDGOALS))))\n"; }' > $(TOPDIR)/.depends |
84 | cat $(TOPDIR)/packages | grep -v '^#' | \ | 109 | cat $(TOPDIR)/packages | grep -v '^#' | \ |
85 | perl -ne '($$cfg, $$dir, $$pro) = $$_ =~ /^(\S+)\s+(\S+)\s+(\S+)/; if ( -e "$$dir/$$pro" ) { print "$$dir/Makefile : $$dir/$$pro \$$(QMAKE) \$$(OPIEDIR)/gen.pro \$$(OPIEDIR)/.config\n\t\$$(call makefilegen,\$$@)\n\n"; }' \ | 110 | perl -ne '($$cfg, $$dir, $$pro) = $$_ =~ /^(\S+)\s+(\S+)\s+(\S+)/; if ( -e "$$dir/$$pro" ) { print "$$dir/Makefile : $$dir/$$pro \$$(QMAKE) \$$(OPIEDIR)/gen.pro \$$(OPIEDIR)/.config\n\t\$$(call makefilegen,\$$@)\n\n"; }' \ |
86 | >> $(TOPDIR)/.depends | 111 | >> $(TOPDIR)/.depends |
87 | # interpackage dependency generation | 112 | # interpackage dependency generation |
88 | @cat $(TOPDIR)/packages | \ | 113 | @cat $(TOPDIR)/packages | \ |
89 | $(TOPDIR)/scripts/deps.pl >> $(TOPDIR)/.depends | 114 | $(TOPDIR)/scripts/deps.pl >> $(TOPDIR)/.depends |
90 | 115 | ||
91 | $(TOPDIR)/.depends.cfgs: | 116 | $(TOPDIR)/.depends.cfgs: |
92 | # config.in interdependencies | 117 | # config.in interdependencies |
93 | @echo $(configs) | sed -e 's,/config.in,,g' | ( for i in `cat`; do echo $$i; done ) > dirs | 118 | @echo $(configs) | sed -e 's,/config.in,,g' | ( for i in `cat`; do echo $$i; done ) > dirs |
94 | @cat dirs | ( for i in `cat`; do if [ "`cat dirs|grep $$i 2>/dev/null|wc -l`" -ne "1" ]; then deps=`cat dirs|grep $$i| grep -v "^$$i$$"|for i in \`cat|sed -e's,^$(TOPDIR)/,$$(TOPDIR)/,g'\`; do echo $$i/config.in; done`; echo `echo $$i/config.in|sed -e 's,^$(TOPDIR)/,$$(TOPDIR)/,'` : $$deps; fi; done ) >> $@ | 119 | @cat dirs | ( for i in `cat`; do if [ "`cat dirs|grep $$i 2>/dev/null|wc -l`" -ne "1" ]; then deps=`cat dirs|grep $$i| grep -v "^$$i$$"|for i in \`cat|sed -e's,^$(TOPDIR)/,$$(TOPDIR)/,g'\`; do echo $$i/config.in; done`; echo `echo $$i/config.in|sed -e 's,^$(TOPDIR)/,$$(TOPDIR)/,'` : $$deps; fi; done ) >> $@ |
95 | @-rm -f dirs | 120 | @-rm -f dirs |
96 | 121 | ||
97 | $(QTDIR)/stamp-headers : | 122 | $(QTDIR)/stamp-headers : |
98 | @-rm -f $(QTDIR)/stamp-headers* | 123 | @-rm -f $(QTDIR)/stamp-headers* |
99 | ( cd $(QTDIR)/include; \ | 124 | ( cd $(QTDIR)/include; \ |