mirror of
https://github.com/opnsense/src.git
synced 2026-05-28 04:12:45 -04:00
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:
parent
0bad156a91
commit
cbfa684843
1 changed files with 2 additions and 2 deletions
|
|
@ -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>
|
||||
|
|
|
|||
Loading…
Reference in a new issue