summaryrefslogtreecommitdiff
path: root/src/pkg/os/inotify/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'src/pkg/os/inotify/Makefile')
-rw-r--r--src/pkg/os/inotify/Makefile14
1 files changed, 14 insertions, 0 deletions
diff --git a/src/pkg/os/inotify/Makefile b/src/pkg/os/inotify/Makefile
new file mode 100644
index 000000000..90e18da57
--- /dev/null
+++ b/src/pkg/os/inotify/Makefile
@@ -0,0 +1,14 @@
+# Copyright 2010 The Go Authors. All rights reserved.
+# Use of this source code is governed by a BSD-style
+# license that can be found in the LICENSE file.
+
+include ../../../Make.inc
+
+TARG=os/inotify
+
+GOFILES_linux=\
+ inotify_linux.go\
+
+GOFILES+=$(GOFILES_$(GOOS))
+
+include ../../../Make.pkg