diff options
author | Gordon Ross <gwr@nexenta.com> | 2015-04-07 23:38:06 -0400 |
---|---|---|
committer | Gordon Ross <gwr@nexenta.com> | 2015-04-09 00:59:14 -0400 |
commit | d83b1c5aac14e92e28d4a8f13d3dac53c6f2515f (patch) | |
tree | 8c27410dcff8a3d512d811e47e4fcd4de47530b4 /usr/src/tools | |
parent | 74cc13807eca094b5c58cfe8fa6e8d06cd1258cf (diff) | |
download | illumos-gfx-drm-d83b1c5aac14e92e28d4a8f13d3dac53c6f2515f.tar.gz |
re-sync with latest illumos Makefile.master etc.
Diffstat (limited to 'usr/src/tools')
-rw-r--r-- | usr/src/tools/Makefile | 33 |
1 files changed, 33 insertions, 0 deletions
diff --git a/usr/src/tools/Makefile b/usr/src/tools/Makefile new file mode 100644 index 0000000..55a3a8a --- /dev/null +++ b/usr/src/tools/Makefile @@ -0,0 +1,33 @@ +# +# This file and its contents are supplied under the terms of the +# Common Development and Distribution License ("CDDL"), version 1.0. +# You may only use this file in accordance with the terms of version +# 1.0 of the CDDL. +# +# A full copy of the text of the CDDL should have accompanied this +# source. A copy of the CDDL is also available via the Internet at +# http://www.illumos.org/license/CDDL. +# + +# +# Copyright 2015 Nexenta Systems, Inc. All rights reserved. +# + +# +# Don't want to copy the tools into this skeleton, +# so just make a link to /opt/onbld +# + +include ../Makefile.master + +all install: proto/root_$(MACH)-nd/opt + +proto/root_$(MACH)-nd/opt : + -/usr/bin/mkdir -p proto/root_$(MACH)-nd + /usr/bin/rm -f $@ + /usr/bin/ln -s /opt $@ + +clobber: + /usr/bin/rm -rf proto + +clean: |