mirror of
https://github.com/lxsang/antd-web-apps
synced 2024-11-20 02:18:20 +01:00
11 lines
221 B
Makefile
11 lines
221 B
Makefile
|
BUILDDIR = ./build
|
||
|
projs = grs info
|
||
|
copyfiles = index.html
|
||
|
main: copy
|
||
|
for f in $(projs); do make -C "$${f}" ; done
|
||
|
|
||
|
copy:
|
||
|
cp -rf $(copyfiles) $(BUILDDIR)
|
||
|
|
||
|
clean:
|
||
|
for f in $(projs); do rm -r $(BUILDDIR)/"$${f}"; done
|