From: kvigor Date: Sat, 30 Sep 2000 21:42:56 +0000 (+0000) Subject: re-introduce required file X-Git-Url: https://git.gag.com/?a=commitdiff_plain;h=b580e574604be0f89afdad8901acb42be36a135d;p=fw%2Fsdcc re-introduce required file git-svn-id: https://sdcc.svn.sourceforge.net/svnroot/sdcc/trunk/sdcc@435 4a8a32a2-be11-0410-ad9d-d568d2c75423 --- diff --git a/src/SDCCpeeph.awk b/src/SDCCpeeph.awk new file mode 100644 index 00000000..160e0694 --- /dev/null +++ b/src/SDCCpeeph.awk @@ -0,0 +1,14 @@ +BEGIN { + print "/* Generated file DO NOT Edit */" + print "/* To Make changes to rules */" + print "/* edit file SDCCpeeph.def */" +} + +/^\/\// { next} + +{ printf "\"" ; + printf "%s",$0; + print "\\n\""; +} + +