我正在尝试为我的桌面安装英特尔以太网驱动程序I219-V,但是当我按照指令操作时,当我为make文件“make load”时它会给我错误。我一直在网上搜索类似的问题,但似乎我的问题有点奇怪。我正在运行Ubuntu 16.04 LTS。我得到的错误是:
Makefile:3: *** missing separator. Stop.
我尝试用cat -e -t -v Makefile进行检查 但结果似乎很好,我不知道我应该在哪里添加另一个标签。请帮帮我,我是linux新手。 这是我做cat -e -t -v Makefile
时的结果#$FreeBSD$$
$
.include <bsd.own.mk>$
$
.PATH: ${.CURDIR}$
$
KMOD=if_em$
SRCS=device_if.h bus_if.h pci_if.h$
SRCS+=$(CORE_SRC) $(COMMON_SHARED) $(LEGACY_SHARED) $(PCIE_SHARED)$
CORE_SRC=if_em.c if_lem.c e1000_osdep.c em_compat.c$
# Shared$
COMMON_SHARED=e1000_api.c e1000_phy.c e1000_nvm.c e1000_mac.c e1000_manage.c$
PCIE_SHARED=e1000_80003es2lan.c e1000_ich8lan.c e1000_82571.c$
LEGACY_SHARED=e1000_82540.c e1000_82542.c e1000_82541.c e1000_82543.c$
$
# These flags are only used when in a standalone tarball build$
CFLAGS+= -DINET -DINET6 -DEM_STANDALONE_BUILD$
$
# Uncomment this to disable Fast interrupt handling.$
#CFLAGS += -DEM_LEGACY_IRQ$
$
# DEVICE_POLLING for a non-interrupt-driven method$
#CFLAGS += -DDEVICE_POLLING$
$
# Uncomment this to enable the stack multiqueue routines$
# with this driver you do not get multiple tx queues,$
# but it does provide input queuing. Testing has shown$
# some stability issues so its off by default.$
# NOTE: it has been found that UDP intensive traffic$
# actually does better with the old stack interface$
# and so it seems better to have this off by default.$
# however it works fine, and some workloads may benefit$
# having it on.$
#CFLAGS += -DEM_MULTIQUEUE$
$
clean:$
^Irm -f opt_bdg.h device_if.h bus_if.h pci_if.h setdef*$
^Irm -f *.o *.kld *.ko$
^Irm -f @ machine export_syms x86$
^Irm -f ${CLEANFILES}$
.include <bsd.kmod.mk>$