github.com/beauknowssoftware/makehcl@v0.0.0-20200322000747-1b9bb1e1c008/internal/plan/testdata/dependencies/make.hcl (about)

     1  default_goal = ["test.txt", "test2.txt", "test3.txt"]
     2  
     3  rule {
     4    target       = "test.txt"
     5    command      = "touch ${target}"
     6    dependencies = ["test2.txt"]
     7  }
     8  
     9  rule {
    10    target  = "test2.txt"
    11    command = "touch ${target}"
    12  }
    13  
    14  rule {
    15    target       = "test3.txt"
    16    command      = "touch ${target}"
    17    dependencies = ["test.txt"]
    18  }