1
0
mirror of https://github.com/lxsang/antd-web-apps synced 2025-07-23 09:09:57 +02:00

add more service

This commit is contained in:
lxsang
2020-11-19 18:09:39 +01:00
parent 697501e388
commit c37f7bf947
4 changed files with 48 additions and 54 deletions

View File

@ -8,6 +8,14 @@ copy:
cp -rf $(copyfiles) $(BUILDDIR)
cp -r silk $(BUILDDIR)
ar:
-[ -d /tmp/antd_web_apps ] && rm -r /tmp/antd_web_apps
-[ -f /tmp/antd_web_apps.tar.gz ] && rm /tmp/antd_web_apps.tar.gz
mkdir /tmp/antd_web_apps
BUILDDIR=/tmp/antd_web_apps make
cd /tmp/antd_web_apps && tar cvzf ../antd_web_apps.tar.gz .
mv /tmp/antd_web_apps.tar.gz dist/
clean:
-for f in $(PROJS); do rm -r $(BUILDDIR)/"$${f}"; done
-for f in $(copyfiles); do rm -r $(BUILDDIR)/"$${f}"; done