Makefile 3.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104
  1. #
  2. # This Makefile takes .st files in the amber/st directory and produces compiled
  3. # javascript files from them, for both debug and deployment.
  4. #
  5. # Where we find the current runnable code and where we put our js files on install
  6. JS := ../js/
  7. # The compiler script
  8. AMBERC := ../bin/amberc
  9. # Generic flags to AMBERC
  10. FLAGS := -d
  11. # All corresponding js filenames for every st file available
  12. # In other words, if we have Kernel.st and Compiler.st, then OBJECTS will be "Kernel.js Compiler.js"
  13. OBJECTS := $(patsubst %.st,%.js,$(wildcard *.st))
  14. # Default make target since it is the first target in this Makefile
  15. all: $(OBJECTS)
  16. # Step by step
  17. #
  18. # First we copy the core javascript files from current working files
  19. # into this directory. These files are hand written or generated using
  20. # other tools (parser.js). $@ is the target name.
  21. boot.js init.js parser.js:
  22. cp ../js/$@ .
  23. # Then we compile Kernel-*.st files depending on having boot.js, init.js and parser.js
  24. # $< means the first dependency - in other words Kernel-*.st
  25. Kernel-Objects.js: Kernel-Objects.st boot.js init.js parser.js
  26. $(AMBERC) $(FLAGS) $<
  27. Kernel-Classes.js: Kernel-Classes.st boot.js init.js parser.js
  28. $(AMBERC) $(FLAGS) $<
  29. Kernel-Methods.js: Kernel-Methods.st boot.js init.js parser.js
  30. $(AMBERC) $(FLAGS) $<
  31. Kernel-Collections.js: Kernel-Collections.st boot.js init.js parser.js
  32. $(AMBERC) $(FLAGS) $<
  33. Kernel-Exceptions.js: Kernel-Exceptions.st boot.js init.js parser.js
  34. $(AMBERC) $(FLAGS) $<
  35. Kernel-Transcript.js: Kernel-Transcript.st boot.js init.js parser.js
  36. $(AMBERC) $(FLAGS) $<
  37. Kernel-Announcements.js: Kernel-Announcements.st boot.js init.js parser.js
  38. $(AMBERC) $(FLAGS) $<
  39. # ...and Compiler, but using the new Kernel from above.
  40. # We only need to depend on Kernel js files since it in turn depends on boot.js etc
  41. Compiler.js: Compiler.st Kernel-Objects.js Kernel-Classes.js Kernel-Methods.js Kernel-Collections.js \
  42. Kernel-Exceptions.js Kernel-Transcript.js
  43. $(AMBERC) $(FLAGS) $<
  44. # ...now that we have a new Kernel and Compiler we use them
  45. # to compile the rest of st files presuming that they only depend on Kernel, like
  46. # for example Canvas.js and Benchfib.js.
  47. %.js: %.st Compiler.js
  48. $(AMBERC) $(FLAGS) $<
  49. # But for some libraries there are more dependencies to care for. Then
  50. # we need to use -l so that the compiler first loads that library
  51. # before compiling the .st file. Otherwise bindings will fail.
  52. #
  53. # NOTE: With the new dependency model in class Package etc this will change!
  54. #
  55. Canvas.js: Canvas.st
  56. $(AMBERC) $(FLAGS) $<
  57. # IDE uses JQuery
  58. IDE.js: IDE.st Canvas.js
  59. $(AMBERC) $(FLAGS) -l Canvas $<
  60. TrySmalltalk.js: TrySmalltalk.st IDE.js
  61. $(AMBERC) $(FLAGS) -l Canvas,IDE $<
  62. # Some Examples use SUnit and also IDE
  63. Examples.js: Examples.st SUnit.js IDE.js
  64. $(AMBERC) $(FLAGS) -l SUnit,Canvas,IDE $<
  65. # Tests typically also use SUnit
  66. Kernel-Tests.js: Kernel-Tests.st SUnit.js
  67. $(AMBERC) $(FLAGS) -l SUnit $<
  68. Compiler-Tests.js: Compiler-Tests.st SUnit.js
  69. $(AMBERC) $(FLAGS) -l SUnit $<
  70. # Documentation
  71. Documentation.js: Documentation.st Canvas.js
  72. $(AMBERC) $(FLAGS) -l Canvas $<;
  73. # Installing is simply copying all js files to js directory.
  74. install: all
  75. cp *.js $(JS)
  76. # And cleaning is trivial also
  77. clean:
  78. rm -f *.js
  79. # These three are phony
  80. .PHONY: all install clean