]> git.proxmox.com Git - mirror_edk2.git/blame - Tools/Source/Merge/src/org/tianocore/Merge/Merge.java
Changed spelling to manifest
[mirror_edk2.git] / Tools / Source / Merge / src / org / tianocore / Merge / Merge.java
CommitLineData
0e771cd3 1// @file
2// Merge wrapper
3//
4// Copyright (c) 2006, Intel Corporation All rights reserved.
5//
6// This program and the accompanying materials are licensed and made
7// available under the terms and conditions of the BSD License which
8// accompanies this distribution. The full text of the license may
9// be found at http://opensource.org/licenses/bsd-license.php
10//
11// THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,
12// WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.
13//
14
15package org.tianocore.Merge;
16
17public class Merge {
18
19 public static void main(String[] args) {
20 if (new MergeCmd().MergeCmdLine(args) != 0)
21 System.exit(1);
22 System.exit(0);
23 }
24}