diff options
Diffstat (limited to 'usr/src/cmd/column/Makefile')
| -rw-r--r-- | usr/src/cmd/column/Makefile | 37 |
1 files changed, 14 insertions, 23 deletions
diff --git a/usr/src/cmd/column/Makefile b/usr/src/cmd/column/Makefile index ab4cf3390e..b9b395b384 100644 --- a/usr/src/cmd/column/Makefile +++ b/usr/src/cmd/column/Makefile @@ -1,42 +1,33 @@ # -# CDDL HEADER START +# 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. # -# The contents of this file are subject to the terms of the -# Common Development and Distribution License, Version 1.0 only -# (the "License"). You may not use this file except in compliance -# with the License. +# 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. # -# You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE -# or http://www.opensolaris.org/os/licensing. -# 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 and include the License file at usr/src/OPENSOLARIS.LICENSE. -# 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) 2013 Joyent, Inc. All rights reserved. -# Use is subject to license terms. +# Copyright 2018 Joyent, Inc. # PROG=column +OBJS=column.o include ../Makefile.cmd -CFLAGS += $(CCVERBOSE) - .KEEP_STATE: all: $(PROG) +$(PROG): $(OBJS) + $(LINK.c) -o $@ $(OBJS) $(LDLIBS) + $(POST_PROCESS) + install: all $(ROOTPROG) clean: + $(RM) $(OBJS) lint: lint_PROG |
