BSD 4_4_Lite2 development
[unix-history] / usr / src / contrib / gawk-2.15.2 / atari / mkconf.g
CommitLineData
52eaaaff
C
1#
2# gulam script to produce configuration file for Atari ST;
3# performs the same job as configure, but only for this specific configuration;
4# it is assumed that it is located in a subdirectory .\atari
5#
6if { -e ..\config\atari }
7 sed -n -f mkscrpt.sed ..\config\atari > sedscr
8 sed -f sedscr ..\config.h-d > config.h
9 sed -n '/^#echo./s///p' ..\config\atari
10 rm sedscr
11 mv config.h ..
12ef
13 echo "'..\config\atari' was lost somewhere"
14 echo "Either construct one based on the examples in the config directory,"
15 echo "or, in source directory, copy config.h-dist to config.h and edit it."
16 exit 1
17endif
18exit 0