diff options
author | Igor Pashev <igor.pashev@nexenta.com> | 2012-09-17 19:32:36 +0400 |
---|---|---|
committer | Igor Pashev <igor.pashev@nexenta.com> | 2012-09-17 19:32:36 +0400 |
commit | 9b8490144b18f8e33854f4b70df768b5ea7819f1 (patch) | |
tree | db018aa3dcbe47133daf1ab0695e6b0032c96b03 /rules/32.mk | |
parent | 1bf822ad2151ad81e6da1e8057a64bb2f252baab (diff) | |
download | cibs-9b8490144b18f8e33854f4b70df768b5ea7819f1.tar.gz |
Include guards
Diffstat (limited to 'rules/32.mk')
-rw-r--r-- | rules/32.mk | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/rules/32.mk b/rules/32.mk index af1cf33..a105f9c 100644 --- a/rules/32.mk +++ b/rules/32.mk @@ -21,9 +21,15 @@ # Copyright (C) 2012, Nexenta Systems, Inc. All rights reserved. # +ifeq (,$(__32_mk)) build-stamp : build-32-stamp configure-stamp : configure-32-stamp install-stamp : install-32-stamp %-32-stamp: bits = 32 + +__32_mk := included + +endif + |