<div dir="ltr">Hi<div>If I have something like this in makefile:</div><div>obj-m := reset-core.o<br>reset-core-y := reset-core-main.o reset-core-utils.o<br></div><div>then module is built OK.</div><div>If I have something like that:</div><div> obj-m := reset-core.o<br>reset-core-y := reset-core.o reset-core-utils.o  <br></div><div>then it is wrongly built.</div><div>So I will replace all source file characters '-' to '_' and I will have:</div><div>obj-m := reset-core.o<br>reset-core-y := reset_core.o reset_core_utils.o   <br></div><div>and everything will be OK, but it is a bit frustrating that code rules me instead of me rules code. Maybe there is another solution?</div><div><br></div></div>