We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 73bfd2e commit 009eb93Copy full SHA for 009eb93
Makefile
@@ -6,7 +6,7 @@ export LC_COLLATE=POSIX
6
7
include Config
8
9
-VERSION = unset
+VERSION = 22.8
10
# Debug mode (spam/verbose)
11
DEBUG = 0
12
# make install vars
@@ -253,6 +253,10 @@ clean:
253
find . -not -path './\{arch\}*' -name ',,*' | xargs rm -rf
254
find man -name '*.gz' | xargs -r gunzip
255
rm -rf man.deb
256
+dist:
257
+ mkdir -p ../yaboot-${VERSION}
258
+ rsync -r --exclude=.git ./ ../yaboot-${VERSION}
259
+ tar -cjf 'yaboot-${VERSION}.tar.bz2' ../yaboot-${VERSION}
260
261
cleandocs:
262
make -C doc clean
0 commit comments