ff092863b3
In addition to running with `go run` and creating a microfactory binary, allow microfactory to be used as a package from other go tools as well. To allow other packages to use this, it needs to be in a non-main package, but `go run` requires a main package. So microfactory.bash runs a sed script before running microfactory with `go run`. This could also be solved by using a relative import, but neither blueprint nor microfactory currently support that. Change-Id: I084163b14720102b3fb93a3c9d44b5d0225ff2c8
23 lines
717 B
Go
23 lines
717 B
Go
// Copyright 2017 Google Inc. All rights reserved.
|
|
//
|
|
// Licensed under the Apache License, Version 2.0 (the "License");
|
|
// you may not use this file except in compliance with the License.
|
|
// You may obtain a copy of the License at
|
|
//
|
|
// http://www.apache.org/licenses/LICENSE-2.0
|
|
//
|
|
// Unless required by applicable law or agreed to in writing, software
|
|
// distributed under the License is distributed on an "AS IS" BASIS,
|
|
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
// See the License for the specific language governing permissions and
|
|
// limitations under the License.
|
|
|
|
package main
|
|
|
|
import (
|
|
"github.com/google/blueprint/microfactory"
|
|
)
|
|
|
|
func main() {
|
|
microfactory.Main()
|
|
}
|