# Declare the contents of the .PHONY variable as phony. We keep that
# information in a variable so we can use it in if_changed and friends.
.PHONY: $(PHONY)
+
+
+%.o: %.uu prepare scripts FORCE
+ $(Q)$(MAKE) $(build)=$(build-dir) $(target-dir)$(notdir $@)
# information in a variable se we can use it in if_changed and friends.
.PHONY: $(PHONY)
+
+
+# .uu -> .o
+# ---------------------------------------------------------------------------
+quiet_cmd_uudecode_o_uu = DECODE $@
+ cmd_uudecode_o_uu = uudecode -o $@ $<
+
+$(obj)/%.o: $(src)/%.uu FORCE
+ $(call if_changed,uudecode_o_uu)