home *** CD-ROM | disk | FTP | other *** search
/ Fresh Fish 7 / FreshFishVol7.bin / bbs / gnu / gcc-2.3.3-src.lha / GNU / src / amiga / gcc-2.3.3 / cond.awk < prev    next >
Text File  |  1994-02-06  |  410b  |  11 lines

  1. # Simpleminded conditional-processor awk script
  2. # to permit use of a single .y source file for C and Objective C.
  3. # If objc=1, the ifobjc conditionals succeed.
  4. # If objc=0, the ifc conditionals succeed.
  5. /^ifobjc$/,/^end ifobjc$/ \
  6.   { if (objc != 0 && $0 != "ifobjc" && $0 != "end ifobjc") print; next }
  7. /^ifc$/,/^end ifc$/       \
  8.   { if (objc == 0 && $0 != "ifc" && $0 != "end ifc") print; next }
  9.  
  10. { print }
  11.