home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 10 Tools / 10-Tools.zip / intercal.zip / pit / Makefile < prev    next >
Makefile  |  1996-06-20  |  1KB  |  76 lines

  1. #
  2. # Torture-tester for the INTERCAL compiler
  3. #
  4.  
  5. SOURCES = \
  6.     ./sample.i \
  7.     ./beer.i \
  8.     ./bubble.i \
  9.     ./count.3i \
  10.     ./hail_mary.3i \
  11.     ./icat.i \
  12.     ./tests/limits.i \
  13.     ./tests/test1.i \
  14.     ./tests/test16bit.i \
  15.     ./tests/testarray.i \
  16.     ./tests/testcf.i \
  17.     ./tests/testlib2.i \
  18.     ./tests/test2.i \
  19.     ./tests/testlimits.i \
  20.     ./tests/testsplat.i \
  21.     ./pow.i \
  22.     ./random.i \
  23.     ./random2.i \
  24.     ./rot13.i \
  25.     ./iogerunds.i \
  26.     ./pi.i \
  27.     ./lib/lib2.i \
  28.     ./lib/numio.i \
  29.     ./lib/syslib.i \
  30.     ./lib/plus.i \
  31.     ./primes.i \
  32.     ./life.i \
  33.     ./life2.i \
  34.     ./sink.i
  35.  
  36. TARGETS = \
  37.     ./sample \
  38.     ./beer \
  39.     ./bubble \
  40.     ./count \
  41.     ./hail_mary \
  42.     ./icat \
  43.     ./tests/limits \
  44.     ./tests/test1 \
  45.     ./tests/test16bit \
  46.     ./tests/testarray \
  47.     ./tests/testcf \
  48.     ./tests/testlib2 \
  49.     ./tests/test2 \
  50.     ./tests/testlimits \
  51.     ./tests/testsplat \
  52.     ./pow \
  53.     ./random \
  54.     ./random2 \
  55.     ./rot13 \
  56.     ./iogerunds \
  57.     ./pi \
  58.     ./lib/lib2 \
  59.     ./lib/numio \
  60.     ./lib/syslib \
  61.     ./lib/plus \
  62.     ./primes \
  63.     ./life \
  64.     ./life2 \
  65.     ./sink
  66.  
  67. test:
  68.     for x in $(SOURCES); do    echo "Test-compiling $$x"; ../src/ick -b $$x; done
  69.  
  70. lines:
  71.     wc -l $(SOURCES)
  72.  
  73. clean:
  74.     rm -f $(TARGETS)
  75.  
  76.