blob: 9043ad0545d5c1c3954cf000cb5c3f029902b9b3 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
|
#!/bin/sh
# This program is called by the make files. It creates the merge.h
# file which is included by netpbm.c.
echo "/* File generated by make_merge.sh */"
echo "/* in directory" `pwd` "*/"
echo
for MERGE_BINARY in $*; do
echo "TRY(\"${MERGE_BINARY}\", main_${MERGE_BINARY});"
done
|