diff options
author | asmodai <asmodai@FreeBSD.org> | 2001-01-06 09:44:30 +0000 |
---|---|---|
committer | asmodai <asmodai@FreeBSD.org> | 2001-01-06 09:44:30 +0000 |
commit | 3ce3460eaced9def4844ba98989b3f5036400da5 (patch) | |
tree | 2dbad1b048ea0b081009b11e63f9a98570ada964 /sys/modules | |
parent | e326256dcc12359db64fa3d201d2ba676493351c (diff) | |
download | FreeBSD-src-3ce3460eaced9def4844ba98989b3f5036400da5.zip FreeBSD-src-3ce3460eaced9def4844ba98989b3f5036400da5.tar.gz |
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.
Diffstat (limited to 'sys/modules')
-rw-r--r-- | sys/modules/s3/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/modules/s3/Makefile b/sys/modules/s3/Makefile index e212fe8..6763bb8 100644 --- a/sys/modules/s3/Makefile +++ b/sys/modules/s3/Makefile @@ -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> |