mirror of
https://github.com/clearlinux/clr-bundles.git
synced 2026-08-18 21:16:19 +00:00
17 lines
306 B
Makefile
17 lines
306 B
Makefile
all: bundles
|
|
|
|
bundles:
|
|
echo "Nothing to build"
|
|
|
|
|
|
install:
|
|
mkdir -p $(DESTDIR)/usr/share/clr-bundles
|
|
cp packages $(DESTDIR)/usr/share/clr-bundles/
|
|
cp -a bundles/* $(DESTDIR)/usr/share/clr-bundles/
|
|
cp -a mappings $(DESTDIR)/usr/share/clr-bundles/
|
|
|
|
|
|
tag:
|
|
git push
|
|
git tag -f latest
|
|
git push -f --tags
|