mirror of
git://git.tartarus.org/simon/puzzles.git
synced 2025-04-21 08:01:30 -07:00
Files
15 lines
233 B
Bash
Executable File
15 lines
233 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.$$ -chzvf - puzzles > ../puzzles.tar.gz
|
|
|
|
rm -rf tmp.$$
|