Open mojadita opened 5 years ago
GNU Make doesn't accept $(.TARGET)
, so $@
must be used instead.
$(TARGET)
is not accepted by berkeley make, and $(.TARGET)
(with dot) is not accepted by GNU make, so the best thing is to use, as suggested, the legacy $@
instead, as both accept this.
Signed-off-by: Luis Colorado luiscoloradourcola@gmail.com