package Makeshift.example.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 Target { /** 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 } // Copyright © 2020 Michael Allan. Licence MIT.