We don't use += for SRCS in Makefiles, we simply use the

line continuation character and state the rest of the sourcefiles
on the next line.
This commit is contained in:
asmodai 2001-01-06 09:44:30 +00:00
parent e326256dcc
commit 3ce3460eac

View File

@ -2,8 +2,8 @@
.PATH: ${.CURDIR}/../../dev/fb
KMOD = s3
SRCS = device_if.h bus_if.h isa_if.h pci_if.h
SRCS += s3_pci.c
SRCS = device_if.h bus_if.h isa_if.h pci_if.h \
s3_pci.c
KMODDEPS = vesa
.include <bsd.kmod.mk>