make: Replace cat by $(CAT)

This commit is contained in:
Jan Lindemann 2012-02-04 11:06:22 +00:00 committed by Jan Lindemann
commit 26baa6a3b4
14 changed files with 34 additions and 33 deletions

View file

@ -15,14 +15,14 @@ $(WINLIB): $(REQUIRED_H)
cp tools/*.h $(LIBPCKGTMPDIR)/include
cp $(SHARED_INCLUDE)/*.h $(LIBPCKGTMPDIR)/include
cp $(WINLIB) $(LIBPCKGTMPDIR)/lib
cat test/dsprout/win32/dsprout.dsp | . scripts/distify_vcpp_dsp.sh ../.. > $(LIBPCKGTMPDIR)/test/console/dsprot.dsp
$(CAT) test/dsprout/win32/dsprout.dsp | . scripts/distify_vcpp_dsp.sh ../.. > $(LIBPCKGTMPDIR)/test/console/dsprot.dsp
cp test/dsprout/*.cpp $(LIBPCKGTMPDIR)/test/console
cp test/minicc/qt/*.cpp test/minicc/qt/*.h $(LIBPCKGTMPDIR)/test/minicc/qt
cat test/minicc/qt/win32/miniccqt.dsp | . scripts/distify_vcpp_dsp.sh ../../.. > $(LIBPCKGTMPDIR)/test/minicc/qt/miniccqt.dsp
$(CAT) test/minicc/qt/win32/miniccqt.dsp | . scripts/distify_vcpp_dsp.sh ../../.. > $(LIBPCKGTMPDIR)/test/minicc/qt/miniccqt.dsp
echo $(DIST_VERSION) > $(LIBPCKGTMPDIR)/version.txt
cat CHANGES > $(LIBPCKGTMPDIR)/changes.txt
cat COPYING > $(LIBPCKGTMPDIR)/copying.txt
cat LGPL > $(LIBPCKGTMPDIR)/lgpl.txt
$(CAT) CHANGES > $(LIBPCKGTMPDIR)/changes.txt
$(CAT) COPYING > $(LIBPCKGTMPDIR)/copying.txt
$(CAT) LGPL > $(LIBPCKGTMPDIR)/lgpl.txt
cd $(LIBPCKGTMPDIR)/..; zip -r `basename $@` `basename $(LIBPCKGTMPDIR)`
mv $(LIBPCKGTMPDIR)/../`basename $@` $(LIBPCKGDIR)