diff options
| author | Balazs Lecz <leczb@google.com> | 2010-12-09 13:11:39 -0500 |
|---|---|---|
| committer | Russ Cox <rsc@golang.org> | 2010-12-09 13:11:39 -0500 |
| commit | 2bdb2e78fe8d8270bcd67df1d6c532a9bf82e83f (patch) | |
| tree | f5fa115b128f00491d0ffabedbeeb396a714f559 /src/pkg/Makefile | |
| parent | b98fffe39eb770cb41b272957ff662e5048d4395 (diff) | |
| download | go-2bdb2e78fe8d8270bcd67df1d6c532a9bf82e83f.tar.xz | |
os/inotify: new package
This patch adds a new package: os/inotify, which
provides a Go wrapper to the Linux inotify system.
R=rsc, albert.strasheim, rog, jacek.masiulaniec
CC=golang-dev
https://golang.org/cl/2049043
Diffstat (limited to 'src/pkg/Makefile')
| -rw-r--r-- | src/pkg/Makefile | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/src/pkg/Makefile b/src/pkg/Makefile index b46fa46e37..0481ff1e65 100644 --- a/src/pkg/Makefile +++ b/src/pkg/Makefile @@ -141,6 +141,12 @@ DIRS=\ ../cmd/goyacc\ ../cmd/hgpatch\ +ifeq ($(GOOS),linux) +DIRS+=\ + os/inotify\ + +endif + NOTEST=\ debug/proc\ exp/draw/x11\ @@ -246,6 +252,9 @@ nuke: nuke.dirs deps: ./deps.bash +echo-dirs: + @echo $(DIRS) + -include Make.deps runtime/cgo.install: ../cmd/cgo.install |
