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 2006 Sun Microsystems, Inc. All rights reserved. 24# Use is subject to license terms. 25# 26# ident "%Z%%M% %I% %E% SMI" 27# 28# lib/libsec/Makefile.com 29# 30 31LIBRARY= libsec.a 32VERS= .1 33 34YFLAGS = -d -v -b acl 35LFLAGS = -t 36OBJS_SHARED= acl_common.o 37GENERATED_SRCS = acl.tab.o acl_lex.o 38OBJS_COMMON= aclcheck.o aclmode.o aclsort.o acltext.o aclutils.o 39OBJECTS= $(OBJS_COMMON) $(OBJS_SHARED) $(GENERATED_SRCS) 40CLEANFILES += acl_lex.c acl.tab.c acl.tab.h 41LINTSRCS = $(OBJS_COMMON) 42 43# include library definitions 44include ../../Makefile.lib 45 46LIBS = $(DYNLIB) $(LINTLIB) 47 48CFLAGS += $(CCVERBOSE) 49CPPFLAGS += -I$(SRCDIR) -I. -I../../../common/acl 50LDLIBS += -lc 51 52# install this library in the root filesystem 53include ../../Makefile.rootfs 54 55SRCS= $(OBJS_COMMON:%.o=$(SRCDIR)/%.c) \ 56 $(OBJS_SHARED:%.o=$(SRC)/common/acl/%.c) 57 58$(LINTLIB):= SRCS= $(SRCDIR)/$(LINTSRC) 59 60SRCDIR= ../common 61MAPDIR= ../spec/$(TRANSMACH) 62SPECMAPFILE= $(MAPDIR)/mapfile 63 64.KEEP_STATE: 65 66all: $(LIBS) 67 68lint: lintcheck 69 70pics/%.o: ../../../common/acl/%.c 71 $(COMPILE.c) -o $@ $< 72 $(POST_PROCESS_O) 73 74acl.tab.c acl.tab.h: $(SRCDIR)/acl.y 75 $(YACC) $(YFLAGS) $(SRCDIR)/acl.y 76 77acl_lex.c: $(SRCDIR)/acl_lex.l acl.tab.h 78 $(LEX) $(LFLAGS) $(SRCDIR)/acl_lex.l > $@ 79 80include ../../Makefile.targ 81