home *** CD-ROM | disk | FTP | other *** search
/ The C Users' Group Library 1994 August / wc-cdrom-cusersgrouplibrary-1994-08.iso / vol_300 / 310_01 / makefile.tst < prev    next >
Makefile  |  1990-04-20  |  670b  |  30 lines

  1. .SUFFIXES : .st .tst
  2.  
  3. TESTS= basic.st blocks.st fork.st new.st super.st copy.st num.st \
  4.     file.st primes.st collect.st 4queen.st phil.st sim1.st sim2.st
  5.  
  6.  
  7. .st.tst:
  8.     \lst\sources\lst -m $*.st <in 
  9.  
  10. install:
  11.     echo Performing Self Checking Tests
  12.         make basic.tst
  13.     make blocks.tst
  14.     make fork.tst
  15.     make new.tst
  16.     make super.tst
  17.     make copy.tst
  18.     make num.tst
  19.     make file.tst
  20.     make primes.tst
  21.     make collect.tst
  22.     make 4queen.tst
  23.     echo The following produce cycles, thus have nonzero differences
  24.     make phil.tst
  25.     echo Differences in random numbers may change results in following
  26.     make sim1.tst
  27.     make sim2.tst
  28.     echo Finished Self Checking Tests
  29.     
  30.