1# 2# This file and its contents are supplied under the terms of the 3# Common Development and Distribution License ("CDDL"), version 1.0. 4# You may only use this file in accordance with the terms of version 5# 1.0 of the CDDL. 6# 7# A full copy of the text of the CDDL should have accompanied this 8# source. A copy of the CDDL is also available via the Internet at 9# http://www.illumos.org/license/CDDL. 10# 11 12# 13# Copyright 2016 Joyent, Inc. 14# 15 16UTSBASE = ../.. 17 18MODULE = i40e 19OBJECTS = $(I40E_OBJS:%=$(OBJS_DIR)/%) $(I40E_INTC_OBJS:%=$(OBJS_DIR)/%) 20LINTS = $(I40E_OBJS:%.o=$(LINTS_DIR)/%.ln) 21ROOTMODULE = $(ROOT_DRV_DIR)/$(MODULE) 22CONF_SRCDIR = $(UTSBASE)/common/io/i40e 23 24include $(UTSBASE)/intel/Makefile.intel 25 26CPPFLAGS += -I$(UTSBASE)/common/io/i40e 27CPPFLAGS += -I$(UTSBASE)/common/io/i40e/core 28 29ALL_TARGET = $(BINARY) $(CONFMOD) 30LINT_TARGET = $(MODULE).lint 31INSTALL_TARGET = $(BINARY) $(ROOTMODULE) $(ROOT_CONFFILE) 32 33# 34# The Intel common code defines some values in header files that end up in all 35# of our objects. Therefore we don't try to lint for that. 36# 37LINTTAGS += -erroff=E_STATIC_UNUSED 38 39LDFLAGS += -dy -N misc/mac 40 41.KEEP_STATE: 42 43def: $(DEF_DEPS) 44 45all: $(ALL_DEPS) 46 47clean: $(CLEAN_DEPS) 48 49clobber: $(CLOBBER_DEPS) 50 51lint: $(LINT_DEPS) 52 53modlintlib: $(MODLINTLIB_DEPS) 54 55clean.lint: $(CLEAN_LINT_DEPS) 56 57install: $(INSTALL_DEPS) 58 59include $(UTSBASE)/intel/Makefile.targ 60