From 2f074ac71fdeed48b50e091c5d7926cdbf1bf9f6 Mon Sep 17 00:00:00 2001 From: Maschell Date: Sat, 30 Jun 2018 16:43:07 +0200 Subject: [PATCH] Minor adjustments to the example plugin makefile --- plugins/example_plugin/Makefile | 2 +- plugins/example_plugin/makefile.mk | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/plugins/example_plugin/Makefile b/plugins/example_plugin/Makefile index 08fb63f..dd480be 100644 --- a/plugins/example_plugin/Makefile +++ b/plugins/example_plugin/Makefile @@ -230,7 +230,7 @@ $(OUTPUT) : $(OFILES) #--------------------------------------------------------------------------------- %.o: %.S @echo $(notdir $<) - $(CC) -MMD -MP -MF $(DEPSDIR)/$*.d -x assembler-with-cpp $(INCLUDE_FULL) -c $< -o $@ $(ERROR_FILTER) + @$(CC) -MMD -MP -MF $(DEPSDIR)/$*.d -x assembler-with-cpp $(INCLUDE_FULL) -c $< -o $@ $(ERROR_FILTER) #--------------------------------------------------------------------------------- %.png.o : %.png diff --git a/plugins/example_plugin/makefile.mk b/plugins/example_plugin/makefile.mk index ed19430..7caac6f 100644 --- a/plugins/example_plugin/makefile.mk +++ b/plugins/example_plugin/makefile.mk @@ -13,7 +13,7 @@ WUT_ENABLE_CPP := 0 # if this is unacceptable to you then you should use this as it replaces the newlib # malloc functions which ones which redirect to the CafeOS default heap functions # such as MEMAllocFromDefaultHeap. -WUT_DEFAULT_MALLOC := 0 +WUT_DEFAULT_MALLOC := 1 # Target filename TARGET := $(notdir $(CURDIR)).mod