363N/A#
363N/A# CDDL HEADER START
363N/A#
363N/A# The contents of this file are subject to the terms of the
363N/A# Common Development and Distribution License (the "License").
363N/A# You may not use this file except in compliance with the License.
363N/A#
363N/A# You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
363N/A# or http://www.opensolaris.org/os/licensing.
363N/A# See the License for the specific language governing permissions
363N/A# and limitations under the License.
363N/A#
363N/A# When distributing Covered Code, include this CDDL HEADER in each
363N/A# file and include the License file at usr/src/OPENSOLARIS.LICENSE.
363N/A# If applicable, add the following below this CDDL HEADER, with the
363N/A# fields enclosed by brackets "[]" replaced with your own identifying
363N/A# information: Portions Copyright [yyyy] [name of copyright owner]
363N/A#
363N/A# CDDL HEADER END
363N/A#
661N/A#
363N/A# Copyright 2006 Sun Microsystems, Inc. All rights reserved.
363N/A# Use is subject to license terms.
363N/A#
363N/A
363N/APROG= mkpwdict
363N/A
363N/A
364N/Ainclude ../Makefile.cmd
363N/A
363N/ACFLAGS += -I$(SRC)/lib/pam_modules/authtok_check
363N/ALINTFLAGS += -erroff=E_NAME_DEF_NOT_USED2 -m
363N/ALINTFLAGS += -I$(SRC)/lib/pam_modules/authtok_check
363N/A
844N/ACERRWARN += -_gcc=-Wno-parentheses
844N/A
363N/ACRACK_SRCDIR= $(SRC)/lib/pam_modules/authtok_check/
1273N/ACRACK_OBJS= packer.o packlib.o dict.o stringlib.o
363N/ACRACK_SRCS= $(CRACK_OBJS:%.o=$(CRACK_SRCDIR)/%.c)
363N/A
363N/AOBJS= $(CRACK_OBJS) mkpwdict.o
363N/ASRCS= $(CRACK_SRCS) mkpwdict.c
695N/A
365N/A.KEEP_STATE:
363N/A
363N/Aall: $(PROG)
363N/A
363N/Ainstall: all $(ROOTPROG)
363N/A
363N/A%.o: $(CRACK_SRCDIR)/%.c
363N/A $(COMPILE.c) -o $@ $<
363N/A $(POST_PROCESS_O)
363N/A
695N/Amkpwdict: $(OBJS)
363N/A $(LINK.c) -o $@ $(OBJS) $(LDLIBS)
363N/A $(POST_PROCESS)
363N/A
814N/Aclean:
814N/A $(RM) $(PROG) $(OBJS)
363N/A
363N/Alint: lint_SRCS
791N/A
791N/Ainclude ../Makefile.targ
791N/A