Package io.github.cdklabs.projen
Interface MakefileOptions
-
- All Superinterfaces:
FileBaseOptions,software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
MakefileOptions.Jsii$Proxy
@Generated(value="jsii-pacmak/1.96.0 (build 921e240)", date="2024-03-28T21:16:42.777Z") @Stability(Experimental) public interface MakefileOptions extends software.amazon.jsii.JsiiSerializable, FileBaseOptions
(experimental) Options for Makefiles.
-
-
Nested Class Summary
Nested Classes Modifier and Type Interface Description static classMakefileOptions.BuilderA builder forMakefileOptionsstatic classMakefileOptions.Jsii$ProxyAn implementation forMakefileOptions
-
Method Summary
All Methods Static Methods Instance Methods Default Methods Modifier and Type Method Description static MakefileOptions.Builderbuilder()default List<String>getAll()(experimental) List of targets to build when Make is invoked without specifying any targets.default List<Rule>getRules()(experimental) Rules to include in the Makefile.-
Methods inherited from interface io.github.cdklabs.projen.FileBaseOptions
getCommitted, getEditGitignore, getExecutable, getMarker, getReadonly
-
-
-
-
Method Detail
-
getAll
@Stability(Experimental) @Nullable default List<String> getAll()
(experimental) List of targets to build when Make is invoked without specifying any targets.Default: []
-
getRules
@Stability(Experimental) @Nullable default List<Rule> getRules()
(experimental) Rules to include in the Makefile.Default: []
-
builder
@Stability(Experimental) static MakefileOptions.Builder builder()
- Returns:
- a
MakefileOptions.BuilderofMakefileOptions
-
-