From 3ce3460eaced9def4844ba98989b3f5036400da5 Mon Sep 17 00:00:00 2001 From: asmodai Date: Sat, 6 Jan 2001 09:44:30 +0000 Subject: [PATCH] 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. --- sys/modules/s3/Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/sys/modules/s3/Makefile b/sys/modules/s3/Makefile index e212fe822293..6763bb813718 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