1. 01 May, 2020 2 commits
    • Makefile: break apart steps in `make clean` · 11c4f998
      The `make clean` target consists of a single `rm` call that passes every
      generated file, object file, and dependency directory.  This results in
      a command line that's around 53,800 characters long.
      
      On Linux, the maximum length of a command line is 131,072 or 262,144
      characters, however on Windows the limit is 32,768.
      
      The 53,800 character command simply fails to run on Windows, which is a
      problem when the first command that gets run is `make clean`.
      
      Break this target into steps, first removing the output files, then the
      object files, then any generated garbage, and then the object depedency
      directories.
      
      This fixes `make clean` (and as a result yosys) on Windows.
      
      Signed-off-by: Sean Cross <sean@xobs.io>
      Sean Cross committed
  2. 30 Apr, 2020 5 commits
  3. 29 Apr, 2020 2 commits
  4. 28 Apr, 2020 1 commit
  5. 27 Apr, 2020 1 commit
  6. 23 Apr, 2020 1 commit
  7. 22 Apr, 2020 1 commit
  8. 18 Apr, 2020 2 commits
  9. 17 Apr, 2020 6 commits
  10. 16 Apr, 2020 1 commit
  11. 14 Apr, 2020 1 commit
  12. 12 Apr, 2020 2 commits
  13. 11 Apr, 2020 1 commit
  14. 10 Apr, 2020 2 commits
  15. 09 Apr, 2020 3 commits
  16. 07 Apr, 2020 3 commits
  17. 04 Apr, 2020 1 commit
  18. 03 Apr, 2020 2 commits
  19. 02 Apr, 2020 1 commit
  20. 30 Mar, 2020 1 commit
  21. 29 Mar, 2020 1 commit