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:
Jeroen Ruigrok van der Werven 2001-01-06 09:44:30 +00:00
parent 0bad156a91
commit cbfa684843
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=70708

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>