15 lines
329 B
Makefile
Raw Permalink Normal View History

2022-09-24 17:49:26 -04:00
SRC=../nodecore
update:
cp "${SRC}/.cdb-release.jpg" .
2023-04-21 08:12:09 -04:00
rm -rf .tmp
mkdir -p .tmp
2023-05-13 20:00:08 -04:00
curl https://gitlab.com/sztest/nodecore/-/archive/dev/nodecore-dev.tar.gz | ( cd .tmp && tar xzf - )
2023-04-21 08:12:09 -04:00
2022-09-24 17:49:26 -04:00
rm -f *.png
2023-05-13 20:00:08 -04:00
set -ex; find .tmp -name src -prune -or -type f -name '*.png' -print \
2023-04-21 08:12:09 -04:00
| while read x; do ln -f "$$x" .; done
rm -rf .tmp