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# 27# cmd/fs.d/cachefs/cfsd 28# 29 30FSTYPE= cachefs 31LIBPROG_C= cachefsd 32ATTMK= $(LIBPROG_C) 33LINKVALUE= ../lib/fs/$(FSTYPE)/$(LIBPROG_C) 34 35include ../../Makefile.fstype 36 37PROGOBJS = cfsd_main.o cfsd_svc.o cfsd_kmod.o cfsd_maptbl.o \ 38 cfsd_logelem.o cfsd_cache.o cfsd_fscache.o cfsd_all.o \ 39 cfsd_logfile.o cfsd_subr.o 40 41LDLIBSMT = $(LDLIBS.cmd) $(CFSLIBMT) $(MDBUGLIB) -lnsl 42include ../Makefile.cachefs 43 44MDBUGLIB= ../mdbug/libdbug.a 45CPPFLAGS += -I.. -D_REENTRANT 46RPCGENFLAGS= -M -C -T 47CLOBBERFILES += $(LIBPROG_C) cachefsd_tbl.i 48 49all : $(LIBPROG_C) 50 51install : $(ROOTLIBFSTYPE)/$(LIBPROG_C) 52 53$(LIBPROG_C): $(OBJS) 54 $(CC) $(LDFLAGS) -o $@ $(OBJS) $(LDLIBSMT) 55 $(POST_PROCESS) 56 57testmap : cfsd_maptbl.o testmap.o 58 $(LINK.c) -o $@ cfsd_maptbl.o testmap.o $(LDLIBS) 59 60cachefsd_tbl.i : $(CACHEFSDIR)/cachefsd.x 61 $(RPCGEN) $(RPCGENFLAGS) -t -o cachefsd_tbl.i \ 62 $(CACHEFSDIR)/cachefsd.x 63 64cfsd_main.o : cfsd_main.c cachefsd_tbl.i 65 66clobber : templates 67 68templates : 69 rm -rf SunWS_cache 70 71$(LIBPROG_C) : $(CFSLIB) $(MDBUGLIB) 72 73$(MDBUGLIB) : 74 cd $(@D); pwd; $(MAKE) $(TARGET); 75 @pwd 76 77$(PROGOBJS) : $(CACHEFSDIR)/cachefsd.h ../mdbug/mdbug.h 78