diff options
Diffstat (limited to 'apps/codecs/codecs.make')
| -rw-r--r-- | apps/codecs/codecs.make | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/apps/codecs/codecs.make b/apps/codecs/codecs.make index a65dc4f..b31958a 100644 --- a/apps/codecs/codecs.make +++ b/apps/codecs/codecs.make @@ -98,6 +98,9 @@ $(CODECDIR)/%.codec: $(CODECDIR)/%.o $(filter %.o, $^) \ $(filter %.a, $^) \ -lgcc $(CODECLDFLAGS) - $(call PRINTS,OC $(@F))$(OC) -O binary $(CODECDIR)/$*.elf $@ - +ifdef SIMVER + $(SILENT)$(shell cp $(BUILDDIR)/$*.elf $@) +else + $(SILENT)$(OC) -O binary $(CODECDIR)/$*.elf $@ +endif |