summaryrefslogtreecommitdiff
authorkergoth <kergoth>2002-11-05 21:21:53 (UTC)
committer kergoth <kergoth>2002-11-05 21:21:53 (UTC)
commit1e44fcf55d2e1724e06b8f2eeaeeb12b0fe13177 (patch) (unidiff)
tree0fece190462c6a352749a2c43e5c94a9f1bab36f
parent29d8b412c02963b58482a9e58e23becb8f18fa0d (diff)
downloadopie-1e44fcf55d2e1724e06b8f2eeaeeb12b0fe13177.zip
opie-1e44fcf55d2e1724e06b8f2eeaeeb12b0fe13177.tar.gz
opie-1e44fcf55d2e1724e06b8f2eeaeeb12b0fe13177.tar.bz2
use ln -sf, not ln -s
Diffstat (more/less context) (show whitespace changes)
-rw-r--r--Rules.make14
1 files changed, 7 insertions, 7 deletions
diff --git a/Rules.make b/Rules.make
index c079acf..4e2a6c5 100644
--- a/Rules.make
+++ b/Rules.make
@@ -24,20 +24,20 @@ $(TOPDIR)/.depends.cfgs:
24 @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 ) >> $@ 24 @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 ) >> $@
25 @-rm -f dirs 25 @-rm -f dirs
26 26
27$(TOPDIR)/stamp-headers : 27$(TOPDIR)/stamp-headers :
28 mkdir -p $(TOPDIR)/include/qpe $(TOPDIR)/include/qtopia \ 28 mkdir -p $(TOPDIR)/include/qpe $(TOPDIR)/include/qtopia \
29 $(TOPDIR)/include/opie $(TOPDIR)/include/qtopia/private 29 $(TOPDIR)/include/opie $(TOPDIR)/include/qtopia/private
30 ( cd include/qpe && rm -f *.h; ln -s ../../library/*.h .; ln -s ../../library/backend/*.h .; rm -f *_p.h; ) 30 ( cd include/qpe && rm -f *.h; ln -sf ../../library/*.h .; ln -sf ../../library/backend/*.h .; rm -f *_p.h; )
31 ( cd include/qtopia && rm -f *.h; ln -s ../../library/*.h .; ) 31 ( cd include/qtopia && rm -f *.h; ln -sf ../../library/*.h .; )
32 ( cd include/qtopia/private && rm -f *.h; ln -s ../../../library/backend/*.h .; ) 32 ( cd include/qtopia/private && rm -f *.h; ln -sf ../../../library/backend/*.h .; )
33 ( cd include/opie && rm -f *.h; ln -s ../../libopie/*.h .; rm -f *_p.h; ) 33 ( cd include/opie && rm -f *.h; ln -sf ../../libopie/*.h .; rm -f *_p.h; )
34 ( cd include/opie && ln -s ../../libsql/*.h .; ) 34 ( cd include/opie && ln -sf ../../libsql/*.h .; )
35 ( cd include/opie && ln -s ../../libopie/pim/*.h .; ) 35 ( cd include/opie && ln -sf ../../libopie/pim/*.h .; )
36 ( cd include/opie; for generatedHeader in `cd ../../libopie; ls *.ui | sed -e "s,\.ui,\.h,g"`; do \ 36 ( cd include/opie; for generatedHeader in `cd ../../libopie; ls *.ui | sed -e "s,\.ui,\.h,g"`; do \
37 ln -s ../../libopie/$$generatedHeader $$generatedHeader; done ) 37 ln -sf ../../libopie/$$generatedHeader $$generatedHeader; done )
38 touch $@ 38 touch $@
39 39
40 40
41 41
42$(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 : 42$(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 :
43 $(call descend,$(shell dirname $@),$(shell basename $@)) 43 $(call descend,$(shell dirname $@),$(shell basename $@))