package Makeshift.example.mixed_top;

// Changes to this file immediately affect the next build.  Treat it as a build script.


/** A build target of the present project.
  */
public enum BuildTarget {


    /** A software builder compiled from source code into Java class files.
      * All other targets depend on this target and include it implicitly.
      */
    builder, // Mandatory, do not remove.


    /** Something unsupported by the default builder.  (An example of declaring it as a target.)
      */
    custom,


    /** Java class files compiled from source code.
      */
    Java_class_files }



                                                        // Copyright © 2020  Michael Allan.  Licence MIT.