diff options
Diffstat (limited to 'src/cmd/link/testdata/Makefile')
| -rw-r--r-- | src/cmd/link/testdata/Makefile | 15 |
1 files changed, 10 insertions, 5 deletions
diff --git a/src/cmd/link/testdata/Makefile b/src/cmd/link/testdata/Makefile index 1d5810a800..3b1b15f731 100644 --- a/src/cmd/link/testdata/Makefile +++ b/src/cmd/link/testdata/Makefile @@ -1,10 +1,15 @@ -all: hello.6 pclntab.6 +ALL=\ + autosection.6\ + autoweak.6\ + dead.6\ + hello.6\ + layout.6\ + pclntab.6\ -hello.6: hello.s - go tool 6a hello.s +all: $(ALL) -pclntab.6: pclntab.s - go tool 6a pclntab.s +%.6: %.s + go tool 6a $*.s pclntab.s: genpcln.go go run genpcln.go >pclntab.s |
