Makefile.conf 1.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455
  1. # this is merely a common Makefile multiple implementers can use
  2. # bigger files (in terms of compile time) tend to go to the top,
  3. # so they don't end up as the last compile unit when compiling
  4. # in parallel. But we also want to mix them a little too avoid
  5. # heavy RAM usage peaks. Other than that the order is arbitrary.
  6. SOURCES = \
  7. ast.cpp \
  8. node.cpp \
  9. context.cpp \
  10. constants.cpp \
  11. functions.cpp \
  12. color_maps.cpp \
  13. environment.cpp \
  14. ast_fwd_decl.cpp \
  15. bind.cpp \
  16. file.cpp \
  17. util.cpp \
  18. json.cpp \
  19. units.cpp \
  20. values.cpp \
  21. plugins.cpp \
  22. position.cpp \
  23. lexer.cpp \
  24. parser.cpp \
  25. prelexer.cpp \
  26. eval.cpp \
  27. expand.cpp \
  28. listize.cpp \
  29. cssize.cpp \
  30. extend.cpp \
  31. output.cpp \
  32. inspect.cpp \
  33. emitter.cpp \
  34. check_nesting.cpp \
  35. remove_placeholders.cpp \
  36. sass.cpp \
  37. sass_util.cpp \
  38. sass_values.cpp \
  39. sass_context.cpp \
  40. sass_functions.cpp \
  41. sass2scss.cpp \
  42. backtrace.cpp \
  43. operators.cpp \
  44. to_c.cpp \
  45. to_value.cpp \
  46. source_map.cpp \
  47. subset_map.cpp \
  48. error_handling.cpp \
  49. memory/SharedPtr.cpp \
  50. utf8_string.cpp \
  51. base64vlq.cpp
  52. CSOURCES = cencode.c