Subversion Repositories ipe_artfile_utils

Rev

Blame | Last modification | View Log | RSS feed

  1. #!/bin/bash
  2.  
  3. DIR=$( dirname "$0" )
  4. cd "$DIR"
  5.  
  6. gcc --std=c99 test_bitmap.c
  7. gcc --std=c99 test_utils.c
  8. gcc --std=c99 test_ipe16_artfile.c
  9. gcc --std=c99 test_ipe16_bmpexport.c
  10. gcc --std=c99 test_ipe16_bmpimport.c
  11. gcc --std=c99 test_ipe16_lzw_encoder.c
  12. gcc --std=c99 test_ipe16_lzw_decoder.c
  13. gcc --std=c99 test_ipe32_artfile.c
  14. gcc --std=c99 test_ipe32_bmpexport.c
  15. gcc --std=c99 test_ipe32_bmpimport.c
  16. gcc --std=c99 test_ipe32_lzw_encoder.c
  17. gcc --std=c99 test_ipe32_lzw_decoder.c
  18. gcc --std=c99 test_ipe_artfile_packer_ipe16_ba.c
  19. gcc --std=c99 test_ipe_artfile_packer_ipe16_pip.c
  20. gcc --std=c99 test_ipe_artfile_packer_ipe32.c
  21. gcc --std=c99 test_ipe_artfile_unpacker_ipe16.c
  22. gcc --std=c99 test_ipe_artfile_unpacker_ipe32.c
  23.  
  24. rm a.out
  25.  
  26.