author | kergoth <kergoth> | 2003-01-28 18:59:21 (UTC) |
---|---|---|
committer | kergoth <kergoth> | 2003-01-28 18:59:21 (UTC) |
commit | b32cd6fb7b80589c1ecfa93eaa43ca91f7a6b2bd (patch) (side-by-side diff) | |
tree | 6daf397af3654157b6c8729aab01ea53d11f95e6 | |
parent | 0bbf9cc78e46de9e116f6b4f8de2b736759f8c15 (diff) | |
download | opie-b32cd6fb7b80589c1ecfa93eaa43ca91f7a6b2bd.zip opie-b32cd6fb7b80589c1ecfa93eaa43ca91f7a6b2bd.tar.gz opie-b32cd6fb7b80589c1ecfa93eaa43ca91f7a6b2bd.tar.bz2 |
bugfix re: switching between x11 and normal builds.. stamp-header cleanup.
-rw-r--r-- | Rules.make | 8 |
1 files changed, 4 insertions, 4 deletions
@@ -34,22 +34,22 @@ $(TOPDIR)/.depends.cfgs: @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 ) >> $@ @-rm -f dirs $(QTDIR)/stamp-headers : - @-rm -f $@* + @-rm -f $(QTDIR)/stamp-headers* ( cd $(QTDIR)/include; \ $(patsubst %,ln -sf ../src/kernel/%;,qgfx_qws.h qwsmouse_qws.h \ qcopchannel_qws.h qwindowsystem_qws.h \ qfontmanager_qws.h qwsdefaultdecoration_qws.h)) touch $@ $(QTDIR)/stamp-headers-x11 : - @-rm -f $@* + @-rm -f $(QTDIR)/stamp-headers* 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) touch $@ $(OPIEDIR)/stamp-headers : - @-rm -f $@* + @-rm -f $(OPIEDIR)/stamp-headers* mkdir -p $(TOPDIR)/include/qpe $(TOPDIR)/include/qtopia \ $(TOPDIR)/include/opie $(TOPDIR)/include/qtopia/private ( cd include/qpe && rm -f *.h; ln -sf ../../library/*.h .; ln -sf ../../library/backend/*.h .; rm -f *_p.h; ) ( cd include/qtopia && rm -f *.h; ln -sf ../../library/*.h .; ) @@ -62,9 +62,9 @@ $(OPIEDIR)/stamp-headers : ln -sf ../../library/custom.h $(TOPDIR)/include/qpe/custom.h touch $@ $(OPIEDIR)/stamp-headers-x11 : - @-rm -f $@* + @-rm -f $(OPIEDIR)/stamp-headers* mkdir -p $(TOPDIR)/include/qpe $(TOPDIR)/include/qtopia \ $(TOPDIR)/include/opie $(TOPDIR)/include/qtopia/private ( cd include/qpe && rm -f *.h; ln -sf ../../library/*.h .; ln -sf ../../library/backend/*.h .; rm -f *_p.h; ) ( cd include/qtopia && rm -f *.h; ln -sf ../../library/*.h .; ) |