Module Name: src
Committed By: riastradh
Date: Sat Aug 20 11:42:50 UTC 2022
Modified Files:
src/sys/dev: Makefile
Log Message:
sys/dev/Makefile: Split INCS onto separate lines for ease of sorting.
Also sort.
To generate a diff of this commit:
cvs rdiff -u -r1.47 -r1.48 src/sys/dev/Makefile
Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.
Modified files:
Index: src/sys/dev/Makefile
diff -u src/sys/dev/Makefile:1.47 src/sys/dev/Makefile:1.48
--- src/sys/dev/Makefile:1.47 Sun Sep 27 11:57:28 2020
+++ src/sys/dev/Makefile Sat Aug 20 11:42:49 2022
@@ -1,4 +1,4 @@
-# $NetBSD: Makefile,v 1.47 2020/09/27 11:57:28 jmcneill Exp $
+# $NetBSD: Makefile,v 1.48 2022/08/20 11:42:49 riastradh Exp $
SUBDIR= apm ata bluetooth dec dm dmover dtv hdaudio hdmicec hid hpc \
i2c i2o ic ieee1394 ir isa \
@@ -18,7 +18,15 @@ SUBDIR+= iscsi
INCSDIR= /usr/include/dev
# Only install includes which are used by userland
-INCS= biovar.h ccdvar.h cgdvar.h fssvar.h keylock.h kttcpio.h lockstat.h \
- md.h vndvar.h spkrio.h
+INCS+= biovar.h
+INCS+= ccdvar.h
+INCS+= cgdvar.h
+INCS+= fssvar.h
+INCS+= keylock.h
+INCS+= kttcpio.h
+INCS+= lockstat.h
+INCS+= md.h
+INCS+= spkrio.h
+INCS+= vndvar.h
.include <bsd.kinc.mk>