~john-koepi/ubuntu/trusty/golang/default

« back to all changes in this revision

Viewing changes to src/pkg/time/Makefile

  • Committer: Bazaar Package Importer
  • Author(s): Ondřej Surý
  • Date: 2011-08-03 17:04:59 UTC
  • mfrom: (14.1.2 sid)
  • Revision ID: james.westby@ubuntu.com-20110803170459-wzd99m3567y80ila
Tags: 1:59-1
* Imported Upstream version 59
* Refresh patches to a new release
* Fix FTBFS on ARM (Closes: #634270)
* Update version.bash to work with Debian packaging and not hg
  repository

Show diffs side-by-side

added added

removed removed

Lines of Context:
13
13
        time.go\
14
14
 
15
15
GOFILES_freebsd=\
 
16
        sys_posix.go\
 
17
        zoneinfo_posix.go\
16
18
        zoneinfo_unix.go\
17
19
 
18
20
GOFILES_darwin=\
 
21
        sys_posix.go\
 
22
        zoneinfo_posix.go\
19
23
        zoneinfo_unix.go\
20
24
 
21
25
GOFILES_linux=\
 
26
        sys_posix.go\
 
27
        zoneinfo_posix.go\
22
28
        zoneinfo_unix.go\
23
29
 
24
30
GOFILES_windows=\
 
31
        sys_posix.go\
25
32
        zoneinfo_windows.go\
26
33
 
 
34
GOFILES_plan9=\
 
35
        sys_plan9.go\
 
36
        zoneinfo_posix.go\
 
37
        zoneinfo_plan9.go\
 
38
 
27
39
GOFILES+=$(GOFILES_$(GOOS))
28
40
 
29
41
include ../../Make.pkg