I am writing a simple device driver in Linux. In the makefile we normally write first line as
obj-m += hello.o
where hello
is the module written. I have seen in other makefiles the symbol +=
being replaced by :=
and some others. What is significant difference between the two and also what are the possible options?