diff options
author | Igor Pashev <igor.pashev@nexenta.com> | 2012-09-18 18:26:00 +0400 |
---|---|---|
committer | Igor Pashev <igor.pashev@nexenta.com> | 2012-09-18 18:26:00 +0400 |
commit | c2d55ceb45f315ed34b5aea11d317fa8ec55cdbb (patch) | |
tree | f654970fc9b770839278a2e5675e2962584f22eb /rules/noarch.mk | |
parent | 498ed93b03cb3ab1fbee1f6c5f2c392ce1934cfc (diff) | |
download | cibs-c2d55ceb45f315ed34b5aea11d317fa8ec55cdbb.tar.gz |
Added noarch.mk for arch-independend packages (like automake)
Diffstat (limited to 'rules/noarch.mk')
-rw-r--r-- | rules/noarch.mk | 35 |
1 files changed, 35 insertions, 0 deletions
diff --git a/rules/noarch.mk b/rules/noarch.mk new file mode 100644 index 0000000..00ae3a2 --- /dev/null +++ b/rules/noarch.mk @@ -0,0 +1,35 @@ +# +# CDDL HEADER START +# +# The contents of this file are subject to the terms of the +# Common Development and Distribution License (the "License"). +# You may not use this file except in compliance with the License. +# +# You can obtain a copy of the license +# at http://www.opensource.org/licenses/CDDL-1.0 +# See the License for the specific language governing permissions +# and limitations under the License. +# +# When distributing Covered Code, include this CDDL HEADER in each file. +# If applicable, add the following below this CDDL HEADER, with the +# fields enclosed by brackets "[]" replaced with your own identifying +# information: Portions Copyright [yyyy] [name of copyright owner] +# +# CDDL HEADER END +# +# +# Copyright (C) 2012, Nexenta Systems, Inc. All rights reserved. +# + +ifeq (,$(__noarch_mk)) + +build-stamp : build-noarch-stamp +configure-stamp : configure-noarch-stamp +install-stamp : install-noarch-stamp + +%-noarch-stamp: bits = noarch + +__noarch_mk := included + +endif + |