MCPcopy Index your code
hub / github.com/Moddable-OpenSource/moddable / generateObjectsRules

Method generateObjectsRules

tools/mcconfig.js:374–385  ·  view source on GitHub ↗
(tool)

Source from the content-addressed store, hash-verified

372 this.line("TASK = ", task);
373 }
374 generateObjectsRules(tool) {
375 for (var result of tool.javaFiles) {
376 this.line("$(SOURCES_DIR)/", result.target, ": ", result.source);
377 this.echo(tool, "copy ", result.target);
378 this.line("\tcp $< $@");
379 }
380 for (var result of tool.androidFiles) {
381 this.line(result.target, ": ", result.source);
382 this.echo(tool, "copy ", result.target);
383 this.line("\tcp $< $@");
384 }
385 }
386}
387
388class IOSMakeFile extends MakeFile {

Callers

nothing calls this directly

Calls 2

echoMethod · 0.80
lineMethod · 0.45

Tested by

no test coverage detected