diff --git a/pom.xml b/pom.xml index 51b33127d..1602531a3 100644 --- a/pom.xml +++ b/pom.xml @@ -109,6 +109,24 @@ + + maven-assembly-plugin + 3.1.0 + + + bin + + + + + make-assembly + package + + single + + + + diff --git a/src/main/java/dk/camelot64/kickc/KickC.java b/src/main/java/dk/camelot64/kickc/KickC.java index 8174dad96..60fb599f2 100644 --- a/src/main/java/dk/camelot64/kickc/KickC.java +++ b/src/main/java/dk/camelot64/kickc/KickC.java @@ -33,7 +33,7 @@ public class KickC implements Callable { @CommandLine.Option(names = {"-I", "-libdir" }, description = "Path to a library folder, where the compiler looks for included files. This option can be repeated to add multiple library folders.") private List libDir = null; - @CommandLine.Option(names = {"-o"}, description = "Name of the output file. By default it is the same as the input file with extension .asm") + @CommandLine.Option(names = {"-o"}, description = "Name of the output assembler file. By default it is the same as the input file with extension .asm") private String asmFileName = null; @CommandLine.Option(names = {"-odir" }, description = "Path to the output folder, where the compiler places all generated files. By default the folder of the output file is used.")