blob: a6fce3fa1ffce019fe6082395f4f9234e67f0fa4 [file] [log] [blame]
Russ Cox9f35e8b2008-09-17 16:20:00 -07001# Copyright 2009 The Go Authors. All rights reserved.
2# Use of this source code is governed by a BSD-style
3# license that can be found in the LICENSE file.
4
Russ Coxda392d92010-08-18 10:08:49 -04005include ../../Make.inc
Russ Cox9f35e8b2008-09-17 16:20:00 -07006
Russ Cox3b864e42009-08-12 13:18:37 -07007TARG=time
8GOFILES=\
Russ Cox5c07e0c2010-01-06 16:35:28 -08009 format.go\
Russ Cox3b864e42009-08-12 13:18:37 -070010 sleep.go\
David Symonds4c30ca02011-03-04 19:57:39 -080011 sys.go\
Russ Cox3b864e42009-08-12 13:18:37 -070012 tick.go\
13 time.go\
Alex Brainman9d5f80b2010-06-29 22:29:09 -070014
15GOFILES_freebsd=\
Anthony Martind119e3b2011-06-19 16:36:33 +100016 sys_posix.go\
17 zoneinfo_posix.go\
Alex Brainman9d5f80b2010-06-29 22:29:09 -070018 zoneinfo_unix.go\
19
20GOFILES_darwin=\
Anthony Martind119e3b2011-06-19 16:36:33 +100021 sys_posix.go\
22 zoneinfo_posix.go\
Alex Brainman9d5f80b2010-06-29 22:29:09 -070023 zoneinfo_unix.go\
24
25GOFILES_linux=\
Anthony Martind119e3b2011-06-19 16:36:33 +100026 sys_posix.go\
27 zoneinfo_posix.go\
Alex Brainman9d5f80b2010-06-29 22:29:09 -070028 zoneinfo_unix.go\
29
Joel Sing8c46e472011-08-12 14:44:16 +100030GOFILES_openbsd=\
31 sys_posix.go\
32 zoneinfo_posix.go\
33 zoneinfo_unix.go\
34
Alex Brainman9d5f80b2010-06-29 22:29:09 -070035GOFILES_windows=\
Anthony Martind119e3b2011-06-19 16:36:33 +100036 sys_posix.go\
Alex Brainman9d5f80b2010-06-29 22:29:09 -070037 zoneinfo_windows.go\
38
Anthony Martind119e3b2011-06-19 16:36:33 +100039GOFILES_plan9=\
40 sys_plan9.go\
41 zoneinfo_posix.go\
42 zoneinfo_plan9.go\
43
Alex Brainman9d5f80b2010-06-29 22:29:09 -070044GOFILES+=$(GOFILES_$(GOOS))
Russ Coxc7bab462008-12-03 16:40:00 -080045
Sergio Luis O. B. Correia6fc82072009-11-23 17:32:51 -080046include ../../Make.pkg