]> git.proxmox.com Git - mirror_edk2.git/blob - Tools/Source/ContextTool/org/tianocore/context/ContextMain.java
Remove static from SurfaceAreaQuery.java for preparing parallel build.(1)
[mirror_edk2.git] / Tools / Source / ContextTool / org / tianocore / context / ContextMain.java
1 package org.tianocore.context;
2
3 public class ContextMain {
4
5 public static void main(String[] args) {
6
7 if(ParseParameter.checkParameter(args) == false){
8 System.exit(0);
9 }
10
11 if (TargetFile.parsePath("target.txt") == false) {
12 System.exit(0);
13 }
14
15 System.out.printf("%n%s", "Target.txt generate successfully!");
16 }
17 }