(tool)
| 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 | |
| 388 | class IOSMakeFile extends MakeFile { |