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 (the "License"). 6# You may not use this file except in compliance with the License. 7# 8# You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE 9# or http://www.opensolaris.org/os/licensing. 10# See the License for the specific language governing permissions 11# and limitations under the License. 12# 13# When distributing Covered Code, include this CDDL HEADER in each 14# file and include the License file at usr/src/OPENSOLARIS.LICENSE. 15# If applicable, add the following below this CDDL HEADER, with the 16# fields enclosed by brackets "[]" replaced with your own identifying 17# information: Portions Copyright [yyyy] [name of copyright owner] 18# 19# CDDL HEADER END 20# 21# 22# Copyright 2008 Sun Microsystems, Inc. All rights reserved. 23# Use is subject to license terms. 24# 25# Copyright 2019 RackTop Systems. 26# 27# lib/libfru/Makefile.flag 28# 29 30LINTFLAGS = -uxn 31LINTFLAGS64 = $(LINTFLAGS) -m64 32LINTOUT= lint.out 33LINTSRC = $(LINTLIB:%.ln=%) 34ROOTLINTDIR = $(ROOTLIBDIR) 35ROOTLINT = $(LINTSRC:%=$(ROOTLINTDIR)/%) 36 37CPPFLAGS += -I../include -I$(SRC)/lib/libpicl 38CPPFLAGS += -I$(SRC)/lib/libfruutils 39CPPFLAGS += -I$(SRC)/cmd/picl/plugins/inc 40CPPFLAGS += -D_REENTRANT 41CFLAGS += $(CCVERBOSE) 42CCFLAGS64 += -mt 43CCFLAGS += -mt 44LDLIBS += -lc 45 46CCERRWARN += -_gcc=-Wno-unused-variable 47CCERRWARN += -_gcc=-Wno-switch 48CCERRWARN += -_gcc=-Wno-reorder 49CCERRWARN += -_gcc=-Wno-type-limits 50 51CLEANFILES += pics/lex.fru.cc pics/y.tab.cc pics/y.tab.h 52 53$(LINTLIB) := SRCS = ../llib-lfru 54$(LINTLIB) := LINTFLAGS = -nvx -I../include 55$(LINTLIB) := LINTFLAGS64 = -nvx -m64 -I../include 56 57CLOBBERFILES += $(DYNLIBCCC) libfru.so 58 59.KEEP_STATE: 60 61all : pics .WAIT $(DYNLIBCCC) 62 $(RM) libfru.so 63 $(LN) $(DYNLIBCCC) libfru.so 64 $(CHMOD) 755 libfru.so 65 66lint : 67 @ $(ECHO) "No C code here, only C++ code: skipping" 68