kernel: Remove unused *.h files from SRCS in kernel module Makefiles.
[dragonfly.git] / sys / conf / kern.post.mk
blob4c127d9301160f98a649feec4f199f50df24bb0f
2 # This Makefile covers the bottom part of the MI build instructions
5 .PHONY: all modules
7 all: ${KERNEL}.stripped
9 _MACHINE_FWD= ${.OBJDIR}
10 .include "$S/conf/kern.fwd.mk"
11 .include "$S/conf/kern.paths.mk"
13 depend kernel-depend modules-depend: ${FORWARD_HEADERS_COOKIE}
15 depend: kernel-depend
16 clean: kernel-clean
17 cleandepend: kernel-cleandepend
18 tags: kernel-tags
19 install: kernel-install
20 reinstall: kernel-reinstall
22 # Often developers just want the kernel, don't let
23 # -j builds leak into the modules until the kernel is done.
25 .ORDER: ${KERNEL}.stripped modules
27 ${KERNEL}.stripped: ${FULLKERNEL}
28 ${OBJCOPY} --strip-debug ${FULLKERNEL} ${KERNEL}.stripped
30 ${FULLKERNEL}: ${SYSTEM_DEP} vers.o
31 @rm -f ${.TARGET}
32 @echo linking ${.TARGET}
33 ${SYSTEM_LD}
34 ${SYSTEM_LD_TAIL}
36 .if !exists(.depend)
37 ${SYSTEM_OBJS}: ${BEFORE_DEPEND:M*.h} ${MFILES:T:S/.m$/.h/}
38 .endif
40 .for mfile in ${MFILES}
41 ${mfile:T:S/.m$/.h/}: ${mfile}
42 awk -f $S/tools/makeobjops.awk -- -h ${mfile}
43 .endfor
45 kernel-clean:
46 rm -f *.o *.so *.So *.ko *.s eddep errs \
47 ${KERNEL} ${KERNEL}.debug ${KERNEL}.nodebug ${KERNEL}.stripped \
48 linterrs setdef[01].c setdefs.h tags \
49 vers.c vnode_if.c vnode_if.h \
50 ${MFILES:T:S/.m$/.c/} ${MFILES:T:S/.m$/.h/} \
51 ${CLEAN}
53 #lint: /tmp
54 # @lint -hbxn -DGENERIC -Dvolatile= ${COPTS} \
55 # $S/platform/$P/$M/Locore.c ${CFILES} ioconf.c | \
56 # grep -v 'struct/union .* never defined' | \
57 # grep -v 'possible pointer alignment problem'
59 locore.o: $S/platform/$P/$M/locore.s assym.s
60 ${NORMAL_S}
62 # This is a hack. BFD "optimizes" away dynamic mode if there are no
63 # dynamic references. We could probably do a '-Bforcedynamic' mode like
64 # in the a.out ld. For now, this works.
65 hack.So: Makefile
66 touch hack.c
67 ${CC} -shared -nostdlib hack.c -o hack.So
68 rm -f hack.c
70 # this rule stops ./assym.s in .depend from causing problems
71 ./assym.s: assym.s
73 assym.s: $S/kern/genassym.sh genassym.o
74 sh $S/kern/genassym.sh genassym.o > ${.TARGET}
76 genassym.o: $S/platform/$P/$M/genassym.c ${FORWARD_HEADERS_COOKIE} \
77 ${MFILES:T:S/.m$/.h/}
78 ${CC} -c ${CFLAGS:N-fno-common:N-flto:N-mcmodel=small} ${WERROR} \
79 $S/platform/$P/$M/genassym.c
81 ${SYSTEM_OBJS} genassym.o vers.o: opt_global.h
83 # The argument list can be very long, use make -V and xargs to
84 # pass it to mkdep.
85 kernel-depend: assym.s ${BEFORE_DEPEND} \
86 ${CFILES} ${SYSTEM_CFILES} ${GEN_CFILES} ${SFILES} \
87 ${SYSTEM_SFILES} ${MFILES:T:S/.m$/.h/}
88 .if defined(FASTER_DEPEND)
89 .if exists(hack.So)
90 @cat ${SYSTEM_OBJS:M*\.o$:S/.o$/.d/} genassym.d > .depend || \
91 echo "There were missing deps"
92 .endif
93 .else
94 rm -f .newdep
95 ${MAKE} -V CFILES -V SYSTEM_CFILES -V GEN_CFILES | xargs \
96 mkdep -a -f .newdep ${CFLAGS}
97 ${MAKE} -V SFILES -V SYSTEM_SFILES | xargs \
98 env MKDEP_CPP="${CC} -E" mkdep -a -f .newdep ${ASM_CFLAGS}
99 rm -f .depend
100 mv -f .newdep .depend
101 .endif
103 kernel-cleandepend:
104 .if defined(FASTER_DEPEND)
105 rm -f *.d
106 .endif
107 rm -f .depend
109 kernel-tags:
110 @[ -f .depend ] || { echo "you must make depend first"; /usr/bin/false; }
111 sh $S/conf/systags.sh
112 rm -f tags1
113 sed -e 's, ../, ,' tags > tags1
115 # Note: when moving the existing kernel to .old, it is by default stripped
116 # so we do not have two full debug environments sitting in / eating up space.
118 # Also note the .old might be a file and not a directory, so we have to
119 # remove it first.
121 kernel-install: kernel-installable
122 @if [ ! -f ${SELECTEDKERNEL} ]; then \
123 echo "You must build a kernel first."; \
124 /usr/bin/false; \
126 @if [ -f ${DESTDIR}${DESTKERNDIR}.old ]; then \
127 rm -f ${DESTDIR}${DESTKERNDIR}.old; \
129 mkdir -p ${DESTDIR}${DESTKERNDIR}.old
130 .if exists(${DESTDIR}${DESTKERNDIR}/${DESTKERNNAME})
131 .ifndef NOFSCHG
132 -chflags noschg ${DESTDIR}${DESTKERNDIR}/${DESTKERNNAME}
133 .endif
134 . ifdef NO_KERNEL_OLD_STRIP
135 cp -p ${DESTDIR}${DESTKERNDIR}/${DESTKERNNAME} ${DESTDIR}${DESTKERNDIR}.old/${DESTKERNNAME}
136 . else
137 ${OBJCOPY} --strip-debug ${DESTDIR}${DESTKERNDIR}/${DESTKERNNAME} ${DESTDIR}${DESTKERNDIR}.old/${DESTKERNNAME}
138 . endif
139 .endif
140 @if [ -f ${DESTDIR}${DESTKERNDIR} ]; then \
141 chflags noschg ${DESTDIR}${DESTKERNDIR}; \
142 rm -f ${DESTDIR}${DESTKERNDIR}; \
144 mkdir -p ${DESTDIR}${DESTKERNDIR}
145 .ifdef NOFSCHG
146 ${INSTALL} -m 555 -o root -g wheel \
147 ${SELECTEDKERNEL} ${DESTDIR}${DESTKERNDIR}/${DESTKERNNAME}
148 .else
149 ${INSTALL} -m 555 -o root -g wheel -fschg \
150 ${SELECTEDKERNEL} ${DESTDIR}${DESTKERNDIR}/${DESTKERNNAME}
151 .endif
153 kernel-reinstall: kernel-installable
154 mkdir -p ${DESTDIR}${DESTKERNDIR}
155 .ifdef NOFSCHG
156 ${INSTALL} -m 555 -o root -g wheel \
157 ${SELECTEDKERNEL} ${DESTDIR}${DESTKERNDIR}/${DESTKERNNAME}
158 .else
159 ${INSTALL} -m 555 -o root -g wheel -fschg \
160 ${SELECTEDKERNEL} ${DESTDIR}${DESTKERNDIR}/${DESTKERNNAME}
161 .endif
163 kernel-installable:
164 @if [ -f ${DESTDIR}/${DESTKERNNAME} ]; then \
165 echo "You need to make buildworld, installworld, and upgrade"; \
166 echo "before you can install a new kernel, because the"; \
167 echo "kernel and modules have moved to /boot"; \
168 /usr/bin/false; \
170 # Skip this step for vkernels
171 .if ${MACHINE_PLATFORM} != vkernel64
172 @if [ ! -f ${DESTDIR}/boot/dloader.rc ]; then \
173 echo "You need to install a new ${DESTDIR}/boot before you"; \
174 echo "can install a new kernel, kernels are now installed"; \
175 echo "into a subdirectory along with their modules."; \
176 echo "You can do this with a buildworld / installworld"; \
177 echo "sequence."; \
178 /usr/bin/false; \
180 .endif
182 .if !defined(MODULES_WITH_WORLD) && !defined(NO_MODULES)
183 all: modules
184 depend: modules-depend
185 clean: modules-clean
186 cleandepend: modules-cleandepend
187 cleandir: modules-cleandir
188 tags: modules-tags
189 install: modules-install
190 reinstall: modules-reinstall
191 .endif
193 modules:
194 @mkdir -p ${.OBJDIR}
195 cd $S ; env ${MKMODULESENV} ${MAKE} -f Makefile.modules obj ; \
196 env ${MKMODULESENV} ${MAKE} -f Makefile.modules all
198 modules-depend:
199 @mkdir -p ${.OBJDIR}
200 cd $S ; env ${MKMODULESENV} ${MAKE} -f Makefile.modules obj ; \
201 env ${MKMODULESENV} ${MAKE} -f Makefile.modules depend
203 modules-clean:
204 cd $S ; env ${MKMODULESENV} ${MAKE} -f Makefile.modules clean
206 modules-cleandepend:
207 cd $S ; env ${MKMODULESENV} ${MAKE} -f Makefile.modules cleandepend
209 # XXX huh?
210 #modules-clobber: modules-clean
211 # rm -rf ${MKMODULESENV}
213 modules-cleandir:
214 cd $S ; env ${MKMODULESENV} ${MAKE} -f Makefile.modules cleandir
216 modules-tags:
217 cd $S ; env ${MKMODULESENV} ${MAKE} -f Makefile.modules tags
219 # Note: when moving the existing modules to .old, they are by default stripped
220 # so we do not have two full debug environments sitting in / eating up space.
222 # We may have to remove deprecated kernel.old files before we can create
223 # the kernel.old directory.
225 modules-install: kernel-installable
226 .if !defined(NO_MODULES_OLD)
227 . ifdef NO_KERNEL_OLD_STRIP
228 set -- ${DESTDIR}${DESTKERNDIR}/*.ko; \
229 if [ -f "$$1" ]; then \
230 if [ -f ${DESTDIR}${DESTKERNDIR}.old ]; then \
231 rm -f ${DESTDIR}${DESTKERNDIR}.old; \
232 fi; \
233 mkdir -p ${DESTDIR}${DESTKERNDIR}.old; \
234 for file; do \
235 cp -p $$file ${DESTDIR}${DESTKERNDIR}.old; \
236 done; \
238 . else
239 set -- ${DESTDIR}${DESTKERNDIR}/*.ko; \
240 if [ -f "$$1" ]; then \
241 if [ -f ${DESTDIR}${DESTKERNDIR}.old ]; then \
242 rm -f ${DESTDIR}${DESTKERNDIR}.old; \
243 fi; \
244 mkdir -p ${DESTDIR}${DESTKERNDIR}.old; \
245 for file; do \
246 ${OBJCOPY} --strip-debug $$file ${DESTDIR}${DESTKERNDIR}.old/$${file##*/}; \
247 done; \
249 . endif
250 if [ -f ${DESTDIR}${DESTKERNDIR}/initrd.img ]; then \
251 cp -p ${DESTDIR}${DESTKERNDIR}/initrd.img ${DESTDIR}${DESTKERNDIR}.old; \
253 if [ -f ${DESTDIR}${DESTKERNDIR}/initrd.img.gz ]; then \
254 cp -p ${DESTDIR}${DESTKERNDIR}/initrd.img.gz ${DESTDIR}${DESTKERNDIR}.old; \
256 .endif
257 .if exists(${DESTDIR}/${OLDMODULESDIR})
258 rm -rf ${DESTDIR}/${OLDMODULESDIR} # remove deprecated
259 .endif
260 mkdir -p ${DESTDIR}${DESTKERNDIR} # Ensure that the modules directory exists!
261 cd $S ; env ${MKMODULESENV} ${MAKE} -f Makefile.modules install
263 modules-reinstall:
264 mkdir -p ${DESTDIR}/${DESTKERNDIR} # Ensure that the modules directory exists!
265 cd $S ; env ${MKMODULESENV} ${MAKE} -f Makefile.modules install
267 config.o:
268 ${NORMAL_C} ${WERROR}
270 ioconf.o:
271 ${NORMAL_C} ${WERROR}
273 vers.c: $S/conf/newvers.sh $S/sys/param.h ${SYSTEM_DEP}
274 sh $S/conf/newvers.sh $S/..
276 # XXX strictly, everything depends on Makefile because changes to ${PROF}
277 # only appear there, but we don't handle that.
278 vers.o:
279 ${NORMAL_C} ${WERROR}
281 .include "$S/conf/bsd.kern.mk"