From cbfa684843b5615f7aa1f2c7818c4b729b1bfb84 Mon Sep 17 00:00:00 2001 From: Jeroen Ruigrok van der Werven 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