Commit 95b4f828 authored by Anthony Martin's avatar Anthony Martin Committed by Rob Pike

build: add missing nuke target

R=golang-dev, r
CC=golang-dev
https://golang.org/cl/5266046
parent c5a6b05b
......@@ -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)
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment