1# $Id: roken.awk,v 1.7 2001/03/26 09:26:35 joda Exp $ 2 3BEGIN { 4 print "#include <stdio.h>" 5 print "#ifdef HAVE_CONFIG_H" 6 print "#include <config.h>" 7 print "#endif" 8 print "" 9 print "int main()" 10 print "{" 11 print "puts(\"/* This is an OS dependent, generated file */\");" 12 print "puts(\"\\n\");" 13 print "puts(\"#ifndef __ROKEN_H__\");" 14 print "puts(\"#define __ROKEN_H__\");" 15 print "puts(\"\");" 16} 17 18$1 == "\#ifdef" || $1 == "\#ifndef" || $1 == "\#if" || $1 == "\#else" || $1 == "\#elif" || $1 == "\#endif" || $1 == "#ifdef" || $1 == "#ifndef" || $1 == "#if" || $1 == "#else" || $1 == "#elif" || $1 == "#endif" { 19 print $0; 20 next 21} 22 23{ 24 s = "" 25 for(i = 1; i <= length; i++){ 26 x = substr($0, i, 1) 27 if(x == "\"" || x == "\\") 28 s = s "\\"; 29 s = s x; 30 } 31 print "puts(\"" s "\");" 32} 33 34END { 35 print "puts(\"#define ROKEN_VERSION \" VERSION );" 36 print "puts(\"\");" 37 print "puts(\"#endif /* __ROKEN_H__ */\");" 38 print "return 0;" 39 print "}" 40} 41