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, Version 1.0 only 6# (the "License"). You may not use this file except in compliance 7# with the License. 8# 9# You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE 10# or http://www.opensolaris.org/os/licensing. 11# See the License for the specific language governing permissions 12# and limitations under the License. 13# 14# When distributing Covered Code, include this CDDL HEADER in each 15# file and include the License file at usr/src/OPENSOLARIS.LICENSE. 16# If applicable, add the following below this CDDL HEADER, with the 17# fields enclosed by brackets "[]" replaced with your own identifying 18# information: Portions Copyright [yyyy] [name of copyright owner] 19# 20# CDDL HEADER END 21# 22# 23# Copyright 2004 Sun Microsystems, Inc. All rights reserved. 24# Use is subject to license terms. 25# 26# ident "%Z%%M% %I% %E% SMI" 27# 28# cmd/fs.d/cachefs/cfsd 29# 30 31FSTYPE= cachefs 32LIBPROG_C= cachefsd 33ATTMK= $(LIBPROG_C) 34LINKVALUE= ../lib/fs/$(FSTYPE)/$(LIBPROG_C) 35 36include ../../Makefile.fstype 37 38PROGOBJS = cfsd_main.o cfsd_svc.o cfsd_kmod.o cfsd_maptbl.o \ 39 cfsd_logelem.o cfsd_cache.o cfsd_fscache.o cfsd_all.o \ 40 cfsd_logfile.o cfsd_subr.o 41 42LDLIBSMT = $(LDLIBS.cmd) $(CFSLIBMT) $(MDBUGLIB) -lnsl 43include ../Makefile.cachefs 44 45MDBUGLIB= ../mdbug/libdbug.a 46CPPFLAGS += -I.. -D_REENTRANT 47RPCGENFLAGS= -M -C -T 48CLOBBERFILES += $(LIBPROG_C) 49 50all : $(LIBPROG_C) 51 52install : $(ROOTLIBFSTYPE)/$(LIBPROG_C) 53 54$(LIBPROG_C): $(OBJS) 55 $(CC) $(LDFLAGS) -o $@ $(OBJS) $(LDLIBSMT) 56 $(POST_PROCESS) 57 58testmap : cfsd_maptbl.o testmap.o 59 $(LINK.c) -o $@ cfsd_maptbl.o testmap.o $(LDLIBS) 60 61cachefsd_tbl.i : $(CACHEFSDIR)/cachefsd.x 62 $(RPCGEN) $(RPCGENFLAGS) -t -o cachefsd_tbl.i \ 63 $(CACHEFSDIR)/cachefsd.x 64 65cfsd_main.o : cfsd_main.c cachefsd_tbl.i 66 67clobber : templates 68 69templates : 70 rm -rf SunWS_cache 71 72$(LIBPROG_C) : $(CFSLIB) $(MDBUGLIB) 73 74$(MDBUGLIB) : 75 cd $(@D); pwd; $(MAKE) $(TARGET); 76 @pwd 77 78$(PROGOBJS) : $(CACHEFSDIR)/cachefsd.h ../mdbug/mdbug.h 79