Makefile (24fe0b3bf671e123467ce1df0b67cadd3614c8e4) | Makefile (cb8a054b1ab30d5caa746e6c44f29d4c9d3071c1) |
---|---|
1# 2# CDDL HEADER START 3# 4# The contents of this file are subject to the terms of the 5# Common Development and Distribution License (the "License"). 6# You may not use this file except in compliance with the License. 7# 8# You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE --- 5 unchanged lines hidden (view full) --- 14# file and include the License file at usr/src/OPENSOLARIS.LICENSE. 15# If applicable, add the following below this CDDL HEADER, with the 16# fields enclosed by brackets "[]" replaced with your own identifying 17# information: Portions Copyright [yyyy] [name of copyright owner] 18# 19# CDDL HEADER END 20# 21# | 1# 2# CDDL HEADER START 3# 4# The contents of this file are subject to the terms of the 5# Common Development and Distribution License (the "License"). 6# You may not use this file except in compliance with the License. 7# 8# You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE --- 5 unchanged lines hidden (view full) --- 14# file and include the License file at usr/src/OPENSOLARIS.LICENSE. 15# If applicable, add the following below this CDDL HEADER, with the 16# fields enclosed by brackets "[]" replaced with your own identifying 17# information: Portions Copyright [yyyy] [name of copyright owner] 18# 19# CDDL HEADER END 20# 21# |
22# Copyright 2009 Sun Microsystems, Inc. All rights reserved. 23# Use is subject to license terms. | 22# Copyright (c) 2009, 2010, Oracle and/or its affiliates. All rights reserved. |
24# 25 26PROG = zlogin 27 28include ../Makefile.cmd 29 30LINTFLAGS += -u | 23# 24 25PROG = zlogin 26 27include ../Makefile.cmd 28 29LINTFLAGS += -u |
31LDLIBS += -lsocket -lzonecfg -lcontract -lbrand | 30LDLIBS += -lsocket -lzonecfg -lcontract -lbrand -lsecdb |
32CFLAGS += $(CCVERBOSE) 33FILEMODE = 0555 34 35.KEEP_STATE: 36 37all: $(PROG) 38 39install: all $(ROOTUSRSBINPROG) 40 41clean: 42 $(RM) $(OBJS) 43 44lint: lint_PROG 45 46include ../Makefile.targ | 31CFLAGS += $(CCVERBOSE) 32FILEMODE = 0555 33 34.KEEP_STATE: 35 36all: $(PROG) 37 38install: all $(ROOTUSRSBINPROG) 39 40clean: 41 $(RM) $(OBJS) 42 43lint: lint_PROG 44 45include ../Makefile.targ |