diff --git a/stand/kboot/libkboot/Makefile b/stand/kboot/libkboot/Makefile index d9ce08cb085..7cdb3db5193 100644 --- a/stand/kboot/libkboot/Makefile +++ b/stand/kboot/libkboot/Makefile @@ -6,10 +6,10 @@ WARNS?= 4 .PATH: ${.CURDIR}/arch/${MACHINE_ARCH} CFLAGS+=-I${.CURDIR} -I${.CURDIR}/arch/${MACHINE_ARCH} -SRCS= crt1.c \ - host_syscall.S \ - host_syscalls.c \ - termios.c +SRCS= crt1.c +SRCS+= host_syscall.S +SRCS+= host_syscalls.c +SRCS+= termios.c .sinclude "${.CURDIR}/arch/${MACHINE_ARCH}/Makefile.inc"