mirror of
https://github.com/reactos/wine.git
synced 2024-11-29 06:30:37 +00:00
24624f6b5d
- Build info et al. is given by files instead of env. vars. - Store that information in resources. - Make the main windows not resizeable. - Insist on creating a fresh log file. - Introduce the make dist target.
35 lines
501 B
Bash
Executable File
35 lines
501 B
Bash
Executable File
#!/bin/sh
|
|
|
|
TOPSRCDIR="$1"
|
|
shift
|
|
|
|
echo "/* Automatically generated -- do not edit! */"
|
|
echo "#include \"resource.h\""
|
|
echo "STRINGTABLE {"
|
|
|
|
i=0
|
|
for test
|
|
do
|
|
echo "$i \"$test\""
|
|
i=`expr $i + 1`
|
|
done
|
|
|
|
i=0
|
|
cd $TOPSRCDIR
|
|
for dir in dlls/*/tests; do
|
|
sed -ne "s|^/\([^.]*.c\)/\([^/]*\).*|$dir/\1:\2|p" $dir/CVS/Entries 2>/dev/null
|
|
done |\
|
|
while read; do
|
|
echo "REV_INFO+$i \"$REPLY\""
|
|
i=`expr $i + 1`
|
|
done
|
|
|
|
echo "}"
|
|
|
|
i=0
|
|
for test
|
|
do
|
|
echo "$i TESTRES \"$test\""
|
|
i=`expr $i + 1`
|
|
done
|