1ae115bc7Smrj# 2ae115bc7Smrj# CDDL HEADER START 3ae115bc7Smrj# 4ae115bc7Smrj# The contents of this file are subject to the terms of the 5ae115bc7Smrj# Common Development and Distribution License (the "License"). 6ae115bc7Smrj# You may not use this file except in compliance with the License. 7ae115bc7Smrj# 8ae115bc7Smrj# You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE 9ae115bc7Smrj# or http://www.opensolaris.org/os/licensing. 10ae115bc7Smrj# See the License for the specific language governing permissions 11ae115bc7Smrj# and limitations under the License. 12ae115bc7Smrj# 13ae115bc7Smrj# When distributing Covered Code, include this CDDL HEADER in each 14ae115bc7Smrj# file and include the License file at usr/src/OPENSOLARIS.LICENSE. 15ae115bc7Smrj# If applicable, add the following below this CDDL HEADER, with the 16ae115bc7Smrj# fields enclosed by brackets "[]" replaced with your own identifying 17ae115bc7Smrj# information: Portions Copyright [yyyy] [name of copyright owner] 18ae115bc7Smrj# 19ae115bc7Smrj# CDDL HEADER END 20ae115bc7Smrj# 21ae115bc7Smrj 22ae115bc7Smrj# 23ae115bc7Smrj# Copyright 2007 Sun Microsystems, Inc. All rights reserved. 24ae115bc7Smrj# Use is subject to license terms. 25ae115bc7Smrj# 26*b6b206fcSJohn Levon# Copyright (c) 2018, Joyent, Inc. 27ae115bc7Smrj 28ae115bc7Smrj# 29ae115bc7Smrj# This makefile drives the PCIC style PCMCIA adapter 30ae115bc7Smrj# It is mostly a standard driver 31ae115bc7Smrj# 32ae115bc7Smrj# intel architecture dependent 33ae115bc7Smrj# 34ae115bc7Smrj 35ae115bc7Smrj# 36ae115bc7Smrj# Paths to the base of the uts directory trees 37ae115bc7Smrj# 38ae115bc7SmrjUTSBASE = ../.. 39ae115bc7Smrj 40ae115bc7Smrj# 41ae115bc7Smrj# Define the module and object file sets. 42ae115bc7Smrj# 43ae115bc7SmrjMODULE = pcic 44ae115bc7SmrjOBJECTS = $(PCIC_OBJS:%=$(OBJS_DIR)/%) 45ae115bc7SmrjLINTS = $(PCIC_OBJS:%.o=$(LINTS_DIR)/%.ln) 46ae115bc7SmrjROOTMODULE = $(ROOT_DRV_DIR)/$(MODULE) 47ae115bc7SmrjCONF_SRCDIR = $(UTSBASE)/common/io 48ae115bc7Smrj 49ae115bc7Smrj# 50ae115bc7Smrj# Include common rules. 51ae115bc7Smrj# 52ae115bc7Smrjinclude $(UTSBASE)/intel/Makefile.intel 53ae115bc7Smrj 54ae115bc7Smrj# 55ae115bc7Smrj# Define targets 56ae115bc7Smrj# 57ae115bc7SmrjALL_TARGET = $(BINARY) $(SRC_CONFILE) 58ae115bc7SmrjLINT_TARGET = $(MODULE).lint 59ae115bc7SmrjINSTALL_TARGET = $(BINARY) $(ROOTMODULE) $(ROOT_CONFFILE) 60ae115bc7Smrj 61ae115bc7SmrjCPPFLAGS += -DCARDBUS -DHOTPLUG 62ae115bc7Smrj# 63ae115bc7Smrj# Dependency 64ae115bc7Smrj# 65ae115bc7SmrjLDFLAGS += -dy -Nmisc/busra -Nmisc/pcmcia -Nmisc/cardbus 66ae115bc7Smrj 67ae115bc7Smrj# 68ae115bc7Smrj# For now, disable these lint checks; maintainers should endeavor 69ae115bc7Smrj# to investigate and remove these for maximum lint coverage. 70ae115bc7Smrj# Please do not carry these forward to new Makefiles. 71ae115bc7Smrj# 72ae115bc7SmrjLINTTAGS += -erroff=E_SUSPICIOUS_COMPARISON 73ae115bc7SmrjLINTTAGS += -erroff=E_BAD_PTR_CAST_ALIGN 74ae115bc7SmrjLINTTAGS += -erroff=E_STATIC_UNUSED 75ae115bc7SmrjLINTTAGS += -erroff=E_ASSIGN_NARROW_CONV 76ae115bc7Smrj 777014882cSRichard LoweCERRWARN += -_gcc=-Wno-parentheses 787014882cSRichard LoweCERRWARN += -_gcc=-Wno-unused-variable 797014882cSRichard LoweCERRWARN += -_gcc=-Wno-unused-function 807014882cSRichard LoweCERRWARN += -_gcc=-Wno-uninitialized 817014882cSRichard Lowe 82*b6b206fcSJohn Levon# needs work 83*b6b206fcSJohn LevonSMOFF += no_if_block,indenting,all_func_returns 84*b6b206fcSJohn Levon 85ae115bc7Smrj# 86ae115bc7Smrj# Default build targets. 87ae115bc7Smrj# 88ae115bc7Smrj.KEEP_STATE: 89ae115bc7Smrj 90ae115bc7Smrjdef: $(DEF_DEPS) 91ae115bc7Smrj 92ae115bc7Smrjall: $(ALL_DEPS) 93ae115bc7Smrj 94ae115bc7Smrjclean: $(CLEAN_DEPS) 95ae115bc7Smrj 96ae115bc7Smrjclobber: $(CLOBBER_DEPS) 97ae115bc7Smrj 98ae115bc7Smrjlint: $(LINT_DEPS) 99ae115bc7Smrj 100ae115bc7Smrjmodlintlib: $(MODLINTLIB_DEPS) 101ae115bc7Smrj 102ae115bc7Smrjclean.lint: $(CLEAN_LINT_DEPS) 103ae115bc7Smrj 104ae115bc7Smrjinstall: $(INSTALL_DEPS) 105ae115bc7Smrj 106ae115bc7Smrj# 107ae115bc7Smrj# Include common targets. 108ae115bc7Smrj# 109ae115bc7Smrjinclude $(UTSBASE)/intel/Makefile.targ 110