The Design and Implementation of the FreeBSD Operating System, Second Edition
Now available: The Design and Implementation of the FreeBSD Operating System (Second Edition)


[ source navigation ] [ diff markup ] [ identifier search ] [ freetext search ] [ file search ] [ list types ] [ track identifier ]

FreeBSD/Linux Kernel Cross Reference
sys/modules/hptmv/Makefile

Version: -  FREEBSD  -  FREEBSD-13-STABLE  -  FREEBSD-13-0  -  FREEBSD-12-STABLE  -  FREEBSD-12-0  -  FREEBSD-11-STABLE  -  FREEBSD-11-0  -  FREEBSD-10-STABLE  -  FREEBSD-10-0  -  FREEBSD-9-STABLE  -  FREEBSD-9-0  -  FREEBSD-8-STABLE  -  FREEBSD-8-0  -  FREEBSD-7-STABLE  -  FREEBSD-7-0  -  FREEBSD-6-STABLE  -  FREEBSD-6-0  -  FREEBSD-5-STABLE  -  FREEBSD-5-0  -  FREEBSD-4-STABLE  -  FREEBSD-3-STABLE  -  FREEBSD22  -  l41  -  OPENBSD  -  linux-2.6  -  MK84  -  PLAN9  -  xnu-8792 
SearchContext: -  none  -  3  -  10 

    1 #
    2 # Makefile for RR182x FreeBSD driver
    3 # Copyright (c)  2004-2005 HighPoint Technologies, Inc. All rights reserved
    4 #
    5 # $FreeBSD: releng/11.1/sys/modules/hptmv/Makefile 319182 2017-05-30 04:11:12Z ngie $
    6 
    7 HPTMV= ${SRCTOP}/sys/dev/hptmv
    8 .PATH: ${HPTMV}
    9 
   10 KMOD= hptmv
   11 SRCS= opt_scsi.h opt_cam.h
   12 SRCS+= bus_if.h device_if.h pci_if.h
   13 SRCS+= mv.c entry.c ioctl.c hptproc.c gui_lib.c
   14 OBJS+= hptmvraid.o
   15 
   16 .if $(MACHINE_CPUARCH) == "amd64"
   17 HPTMV_RAID_O = amd64-elf.raid.o.uu
   18 .else
   19 HPTMV_RAID_O = i386-elf.raid.o.uu
   20 .endif
   21 
   22 hptmvraid.o:    ${HPTMV}/$(HPTMV_RAID_O)
   23         uudecode -p < ${HPTMV}/$(HPTMV_RAID_O) > ${.TARGET}
   24 
   25 #
   26 # Debug Options:
   27 #
   28 #   -DDEBUG: include debug code
   29 #   -DDEBUG_LEVEL=x:
   30 #               0 - No debug output message
   31 #               1 - print only error messages
   32 #               2 - print error and warning
   33 #               3 - print all messages (info, warning, error)
   34 #
   35 #DEBUGOPT = -O2
   36 
   37 .if defined(DEBUG) && $(DEBUG) == 1
   38 DEBUGOPT += -DDEBUG
   39 .if defined(DEBUG_LEVEL)
   40 DEBUGOPT += -DDEBUG_LEVEL=$(DEBUG_LEVEL)
   41 .else
   42 DEBUGOPT += -DDEBUG_LEVEL=1
   43 .endif
   44 .endif
   45 
   46 .if defined(FOR_DEMO) && $(FOR_DEMO) == 1
   47 DEBUGOPT += -DFOR_DEMO
   48 .endif
   49 
   50 CFLAGS = ${DEBUGOPT}
   51 
   52 .include <bsd.kmod.mk>

Cache object: ad569f627baeadf0edb46676846f3b07


[ source navigation ] [ diff markup ] [ identifier search ] [ freetext search ] [ file search ] [ list types ] [ track identifier ]


This page is part of the FreeBSD/Linux Linux Kernel Cross-Reference, and was automatically generated using a modified version of the LXR engine.