Files
puzzles/makedist.sh
Simon Tatham 9b71ae8fd7 makedist.sh should be silent.
[originally from svn r4240]
2004-05-22 13:08:18 +00:00

15 lines
232 B
Bash
Executable File

#!/bin/sh
perl mkfiles.pl
mkdir tmp.$$
mkdir tmp.$$/puzzles
for i in *.c *.h LICENCE README Recipe mkfiles.pl Makefile.*; do
ln -s ../../$i tmp.$$/puzzles
done
tar -C tmp.$$ -chzf - puzzles > ../puzzles.tar.gz
rm -rf tmp.$$