1*a547be5dSGordon Ross# 2*a547be5dSGordon Ross# CDDL HEADER START 3*a547be5dSGordon Ross# 4*a547be5dSGordon Ross# The contents of this file are subject to the terms of the 5*a547be5dSGordon Ross# Common Development and Distribution License (the "License"). 6*a547be5dSGordon Ross# You may not use this file except in compliance with the License. 7*a547be5dSGordon Ross# 8*a547be5dSGordon Ross# You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE 9*a547be5dSGordon Ross# or http://www.opensolaris.org/os/licensing. 10*a547be5dSGordon Ross# See the License for the specific language governing permissions 11*a547be5dSGordon Ross# and limitations under the License. 12*a547be5dSGordon Ross# 13*a547be5dSGordon Ross# When distributing Covered Code, include this CDDL HEADER in each 14*a547be5dSGordon Ross# file and include the License file at usr/src/OPENSOLARIS.LICENSE. 15*a547be5dSGordon Ross# If applicable, add the following below this CDDL HEADER, with the 16*a547be5dSGordon Ross# fields enclosed by brackets "[]" replaced with your own identifying 17*a547be5dSGordon Ross# information: Portions Copyright [yyyy] [name of copyright owner] 18*a547be5dSGordon Ross# 19*a547be5dSGordon Ross# CDDL HEADER END 20*a547be5dSGordon Ross# 21*a547be5dSGordon Ross 22*a547be5dSGordon Ross# 23*a547be5dSGordon Ross# Copyright (c) 2010, Oracle and/or its affiliates. All rights reserved. 24*a547be5dSGordon Ross# 25*a547be5dSGordon Ross 26*a547be5dSGordon Ross# 27*a547be5dSGordon Ross# cmd/fs.d/smbclnt/smbiod-svc/Makefile 28*a547be5dSGordon Ross# 29*a547be5dSGordon Ross 30*a547be5dSGordon RossFSTYPE= smbfs 31*a547be5dSGordon RossTYPEPROG= smbiod-svc 32*a547be5dSGordon Ross 33*a547be5dSGordon Rossinclude ../../Makefile.fstype 34*a547be5dSGordon Ross 35*a547be5dSGordon RossOBJS= $(TYPEPROG).o 36*a547be5dSGordon RossSRCS= $(TYPEPROG).c 37*a547be5dSGordon RossPOFILE= $(TYPEPROG).po 38*a547be5dSGordon Ross 39*a547be5dSGordon RossCFLAGS += $(CCVERBOSE) 40*a547be5dSGordon RossC99MODE= $(C99_ENABLE) 41*a547be5dSGordon Ross 42*a547be5dSGordon RossCPPFLAGS += -I$(SRC)/lib/libsmbfs \ 43*a547be5dSGordon Ross -I$(SRC)/uts/common/smbclnt -I$(SRC)/uts/common 44*a547be5dSGordon Ross 45*a547be5dSGordon Ross# Debugging 46*a547be5dSGordon Ross${NOT_RELEASE_BUILD} CPPFLAGS += -DDEBUG 47*a547be5dSGordon Ross 48*a547be5dSGordon Rossall: $(TYPEPROG) 49*a547be5dSGordon Ross 50*a547be5dSGordon Rosscatalog: $(POFILE) 51*a547be5dSGordon Ross 52*a547be5dSGordon Rosslint: lint_SRCS 53*a547be5dSGordon Ross 54*a547be5dSGordon Rossclean: 55*a547be5dSGordon Ross $(RM) $(OBJS) $(POFILE) 56*a547be5dSGordon Ross 57*a547be5dSGordon Ross.KEEP_STATE: 58