25개 이상의 토픽을 선택하실 수 없습니다. Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

42 lines
1.3 KiB

  1. all: synthetic-traces balanced-traces check-balance
  2. synthetic-traces:
  3. ./gen_binary.pl
  4. ./gen_binary2.pl
  5. ./gen_coalescing.pl
  6. ./gen_random.pl
  7. ./gen_realloc.pl
  8. ./gen_realloc2.pl
  9. balanced-traces:
  10. ./checktrace.pl < amptjp.rep > amptjp-bal.rep
  11. ./checktrace.pl < binary.rep > binary-bal.rep
  12. ./checktrace.pl < binary2.rep > binary2-bal.rep
  13. ./checktrace.pl < cccp.rep > cccp-bal.rep
  14. ./checktrace.pl < coalescing.rep > coalescing-bal.rep
  15. ./checktrace.pl < cp-decl.rep > cp-decl-bal.rep
  16. ./checktrace.pl < expr.rep > expr-bal.rep
  17. ./checktrace.pl < realloc.rep > realloc-bal.rep
  18. ./checktrace.pl < realloc2.rep > realloc2-bal.rep
  19. ./checktrace.pl < random.rep > random-bal.rep
  20. ./checktrace.pl < random2.rep > random2-bal.rep
  21. ./checktrace.pl < short1.rep > short1-bal.rep
  22. ./checktrace.pl < short2.rep > short2-bal.rep
  23. check-balance:
  24. ./checktrace.pl -s < amptjp-bal.rep
  25. ./checktrace.pl -s < binary-bal.rep
  26. ./checktrace.pl -s < binary2-bal.rep
  27. ./checktrace.pl -s < cccp-bal.rep
  28. ./checktrace.pl -s < coalescing-bal.rep
  29. ./checktrace.pl -s < cp-decl-bal.rep
  30. ./checktrace.pl -s < expr-bal.rep
  31. ./checktrace.pl -s < realloc-bal.rep
  32. ./checktrace.pl -s < realloc2-bal.rep
  33. ./checktrace.pl -s < random-bal.rep
  34. ./checktrace.pl -s < random2-bal.rep
  35. ./checktrace.pl -s < short1-bal.rep
  36. ./checktrace.pl -s < short2-bal.rep
  37. clean:
  38. rm -f *~