1
0
mirror of https://github.com/lxsang/antd-web-apps synced 2024-11-20 02:18:20 +01:00
antd-web-apps/Makefile

14 lines
381 B
Makefile
Raw Normal View History

2019-12-19 23:01:05 +01:00
BUILDDIR?=./build
PROJS?=grs info blog apps os
2018-09-15 21:35:07 +02:00
copyfiles = index.ls mimes.json
2019-12-15 12:13:04 +01:00
main: copy
2019-12-19 23:01:05 +01:00
for f in $(PROJS); do BUILDDIR=$(BUILDDIR)/"$${f}" make -C "$${f}" ; done
2018-02-21 19:04:26 +01:00
copy:
cp -rf $(copyfiles) $(BUILDDIR)
cp -r silk $(BUILDDIR)
2018-02-21 19:04:26 +01:00
clean:
2019-12-19 23:01:05 +01:00
-for f in $(PROJS); do rm -r $(BUILDDIR)/"$${f}"; done
-for f in $(copyfiles); do rm -r $(BUILDDIR)/"$${f}"; done
-rm -r $(BUILDDIR)/silk