home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Fresh Fish 8
/
FreshFishVol8-CD2.bin
/
bbs
/
gnu
/
gawk-2.15.5-src.lha
/
gawk-2.15.5
/
mungeconf
< prev
next >
Wrap
Text File
|
1991-07-02
|
464b
|
21 lines
#! /bin/sh
# stdout is normally config.h
case $# in
2) ;;
*) echo "Usage: mungeconf sysfile distfile" >&2 ; exit 2 ;;
esac
sed '/^#/d; /^MAKE_*/d' $1 | # strip comments and Makefile stuff
sed '1s:.*:s~__SYSTEM__~&~:
2,$s:^\([^ ]*\)[ ].*:s~^/\\* #define[ ]*\1.*~#define &~:' >sedscr
sed -f sedscr $2
echo
echo '/* anything that follows is for system-specific short-term kludges */'
grep '^#define' $1 # for system-specific short-term kludges
rm -f sedscr