Changeset 23039 for misc

Show
Ignore:
Timestamp:
11/18/08 20:00:52 (7 weeks ago)
Author:
putter
Message:

[STD_blue] Continued adaptation to current STD.pm/gimme5.
A minor commit: +escape rule; +Makefile dev targets.

Location:
misc/elfish/STD_blue
Files:
2 modified

Legend:

Unmodified
Added
Removed
  • misc/elfish/STD_blue/IRx1_FromAST2_create.pl

    r22964 r23039  
    255255nibbles 
    256256$m<variable> 
     257 
     258escape 
     259my $e = *text*; 
     260if    $e eq '\n' { Buf.newp("\n") } 
     261elsif $e eq '\t' { Buf.newp("\t") } 
     262else { die "Unsupported escape: "~$e } 
    257263 
    258264 
  • misc/elfish/STD_blue/Makefile

    r22964 r23039  
    88        ../../elf/elf_h -x -o ./elfx -I ../../elf/elf_h_src -e 'use Elf_wo_main' IRx1_FromAST2.pm Parser2.pm -e elf_main 
    99 
     10tst: 
     11        -rm ${TMP}/x? 
     12        ./elfx -I ${ELFDIR} -x -o ${TMP}/x1 ${ELFDIR}/Compiler.pm 
     13        ${ELF} -I ${ELFDIR} -x -o ${TMP}/x0 ${ELFDIR}/Compiler.pm 
     14        -diff ${TMP}/x0 ${TMP}/x1 
     15 
     16regression_check: 
     17        -rm ${TMP}/x? 
     18        ./elfx -I ${ELFDIR} -x -o ${TMP}/x1 ${ELFDIR}/CommandLine.pm 
     19        ${ELF} -I ${ELFDIR} -x -o ${TMP}/x0 ${ELFDIR}/CommandLine.pm 
     20        -diff ${TMP}/x0 ${TMP}/x1 
    1021 
    1122check: have_parser_cache