Differences From Artifact [3ece26026f]:
- File makefile — part of check-in [91e02e35d5] at 2025-02-21 22:02:29 on branch trunk — add janet API bootstrapping infra (prim, core), begin building executor (vm.c), design class model, continue working on loading, add script instances, tidy up src organization, build janet to use godot malloc/free (user: lexi, size: 4951) [annotate] [blame] [check-ins using]
To Artifact [2e0c155ba6]:
- File makefile — part of check-in [c0fd81ac3d] at 2025-02-28 00:10:28 on branch trunk — continue iterating on object model (user: lexi, size: 4956) [annotate] [blame] [check-ins using]
92 92 export gd_build_gen = $g 93 93 export gd_api_spec = $g/extension_api.json 94 94 export gd_api_iface = $g/gdextension_interface.h 95 95 96 96 .PHONY: all clean purge 97 97 all: $o/gdjn.so 98 98 clean: 99 - rm "$o/"*.o "$g/"*.{jimage,h} "$o/gdjn.so" 99 + rm "$o/"*.o "$g/"*.{jimage,h,json} "$o/gdjn.so" 100 100 purge: 101 101 rm "$o/"* "$g/"* 102 102 $(MAKE) -C "$(janet.src.path)" clean 103 103 104 104 %/:; $(path-ensure) 105 105 %: | $(@D)/ 106 106