~ubuntu-branches/ubuntu/wily/afnix/wily

« back to all changes in this revision

Viewing changes to prj/std/Makefile

  • Committer: Package Import Robot
  • Author(s): Nobuhiro Iwamatsu
  • Date: 2015-07-11 02:00:35 UTC
  • mfrom: (10.1.1 sid)
  • Revision ID: package-import@ubuntu.com-20150711020035-2nhpztq7s15qyc0v
Tags: 2.5.1-1
* New upstream release. (Closes: #789968)
* Update debian/control.
  - Update Standards-Version to 3.9.6.
* Add support mips64(el) and ppc64el. (Closes: #741508, #748146)
* Add patches/support-gcc-5.x.patch. (Closes: #777767)
  - Fix build with gcc-5.x.
* Add patches/Disable-NET0001.als.patch.
  - Disable test of NET0001.als.

Show diffs side-by-side

added added

removed removed

Lines of Context:
11
11
# - the copyright holder be  liable for  any direct, indirect, incidental or -
12
12
# - special damages arising in any way out of the use of this software.      -
13
13
# ----------------------------------------------------------------------------
14
 
# - copyright (c) 1999-2012 amaury darsch                                    -
 
14
# - copyright (c) 1999-2015 amaury darsch                                    -
15
15
# ----------------------------------------------------------------------------
16
16
 
17
17
TOPDIR          = ../..
46
46
 
47
47
build:
48
48
        @${MAKE} -C adp all
 
49
        @${MAKE} -C axp all
 
50
        @${MAKE} -C tls all
49
51
.PHONY: build
50
52
 
51
53
# rule: test
53
55
 
54
56
test:
55
57
        @${MAKE} -C adp test
 
58
        @${MAKE} -C axp test
56
59
.PHONY: test
57
60
 
58
61
# rule: doc
60
63
 
61
64
doc:
62
65
        @${MAKE} -C adp doc
 
66
        @${MAKE} -C axp doc
63
67
.PHONY: doc
64
68
 
65
69
# rule: distri
69
73
        @$(MKDIR) $(DSTDIR)
70
74
        @$(CP)    Makefile $(DSTDIR)
71
75
        @${MAKE} -C adp distri
 
76
        @${MAKE} -C axp distri
 
77
        @${MAKE} -C tls distri
72
78
.PHONY: distri
73
79
 
74
80
# rule: install
76
82
 
77
83
install:
78
84
        @${MAKE} -C adp install
 
85
        @${MAKE} -C axp install
 
86
        @${MAKE} -C tls install
79
87
.PHONY: install
80
88
 
81
89
# rule: publish
83
91
 
84
92
publish:
85
93
        @${MAKE} -C adp publish
 
94
        @${MAKE} -C axp publish
86
95
.PHONY: publish
87
96
 
88
97
# rule: clean
90
99
 
91
100
clean::
92
101
        @${MAKE} -C adp clean
 
102
        @${MAKE} -C axp clean
 
103
        @${MAKE} -C tls clean
93
104
.PHONY: clean