1//+build mage
2
3package main
4
5import "github.com/magefile/mage/mage/testdata/mixed_lib_files/subdir"
6
7func Build() {
8	subdir.Build()
9}
10