freebsd-dev/sys/modules/hptmv/Makefile
Warner Losh 22ed04c203 hptmv: use BLOB_OBJS for pre-built .o's
Sponsored by:		Netflix
2021-06-02 10:39:58 -06:00

44 lines
885 B
Makefile

#
# Makefile for RR182x FreeBSD driver
# Copyright (c) 2004-2005 HighPoint Technologies, Inc. All rights reserved
#
# $FreeBSD$
HPTMV= ${SRCTOP}/sys/dev/hptmv
.PATH: ${HPTMV}
KMOD= hptmv
SRCS= opt_scsi.h opt_cam.h
SRCS+= bus_if.h device_if.h pci_if.h
SRCS+= mv.c entry.c ioctl.c hptproc.c gui_lib.c
BLOB_OBJS+= ${HPTMV}/${MACHINE_CPUARCH}-elf.hptmvraid.o
#
# Debug Options:
#
# -DDEBUG: include debug code
# -DDEBUG_LEVEL=x:
# 0 - No debug output message
# 1 - print only error messages
# 2 - print error and warning
# 3 - print all messages (info, warning, error)
#
#DEBUGOPT = -O2
.if defined(DEBUG) && $(DEBUG) == 1
DEBUGOPT += -DDEBUG
.if defined(DEBUG_LEVEL)
DEBUGOPT += -DDEBUG_LEVEL=$(DEBUG_LEVEL)
.else
DEBUGOPT += -DDEBUG_LEVEL=1
.endif
.endif
.if defined(FOR_DEMO) && $(FOR_DEMO) == 1
DEBUGOPT += -DFOR_DEMO
.endif
CFLAGS = ${DEBUGOPT}
.include <bsd.kmod.mk>