git: c079c82646e8 - main - enic: Cleanup module Makefile
- Go to: [ bottom of page ] [ top of archives ] [ this month ]
Date: Mon, 06 Feb 2023 17:27:03 UTC
The branch main has been updated by ambrisko:
URL: https://cgit.FreeBSD.org/src/commit/?id=c079c82646e83454d3dac7228320b11bb3df5cdc
commit c079c82646e83454d3dac7228320b11bb3df5cdc
Author: Doug Ambrisko <ambrisko@FreeBSD.org>
AuthorDate: 2023-02-06 17:25:12 +0000
Commit: Doug Ambrisko <ambrisko@FreeBSD.org>
CommitDate: 2023-02-06 17:26:53 +0000
enic: Cleanup module Makefile
Remove debug flags, old FreeBSD tag info and old include info.
---
sys/modules/enic/Makefile | 9 ---------
1 file changed, 9 deletions(-)
diff --git a/sys/modules/enic/Makefile b/sys/modules/enic/Makefile
index 62ac0f574a8b..420942c44ead 100644
--- a/sys/modules/enic/Makefile
+++ b/sys/modules/enic/Makefile
@@ -1,11 +1,5 @@
-#$FreeBSD: head/sys/modules/ix/Makefile 327031 2017-12-20 18:15:06Z erj $
-
.PATH: ${SRCTOP}/sys/dev/enic
-COPTS=-g
-#WITH_DEBUG_FILES=yes
-DEBUG_FLAGS=-g
-
KMOD = if_enic
SRCS = device_if.h bus_if.h pci_if.h pci_iov_if.h ifdi_if.h
SRCS += opt_inet.h opt_inet6.h opt_rss.h
@@ -13,7 +7,4 @@ SRCS += opt_inet.h opt_inet6.h opt_rss.h
SRCS += if_enic.c enic_txrx.c enic_res.c
SRCS += vnic_cq.c vnic_dev.c vnic_intr.c vnic_rq.c vnic_wq.c
-
-CFLAGS+= -I${SRCTOP}/sys/dev/enic_native -I${SRCTOP}/sys/dev/enic_native/base
-
.include <bsd.kmod.mk>