1
0
mirror of https://github.com/golang/go synced 2024-11-18 15:54:42 -07:00

build: add missing nuke target

R=golang-dev, r
CC=golang-dev
https://golang.org/cl/5266046
This commit is contained in:
Anthony Martin 2011-10-17 14:18:21 -07:00 committed by Rob Pike
parent c5a6b05ba4
commit 95b4f8284f

View File

@ -48,6 +48,7 @@ CLEANDIRS=\
install: $(patsubst %,%.install,$(DIRS))
clean: $(patsubst %,%.clean,$(CLEANDIRS))
nuke: $(patsubst %,%.nuke,$(CLEANDIRS))
%.install:
@echo
@ -62,5 +63,8 @@ $(O)a.install $(O)c.install $(O)g.install: $(O)l.install
%.clean:
$(MAKE) -C $* clean
%.nuke:
$(MAKE) -C $* nuke
echo-dirs:
@echo $(DIRS)