Minor adjustments to the example plugin makefile

This commit is contained in:
Maschell 2018-06-30 16:43:07 +02:00
parent 4bdca98d8d
commit 2f074ac71f
2 changed files with 2 additions and 2 deletions

View File

@ -230,7 +230,7 @@ $(OUTPUT) : $(OFILES)
#--------------------------------------------------------------------------------- #---------------------------------------------------------------------------------
%.o: %.S %.o: %.S
@echo $(notdir $<) @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 %.png.o : %.png

View File

@ -13,7 +13,7 @@ WUT_ENABLE_CPP := 0
# if this is unacceptable to you then you should use this as it replaces the newlib # 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 # malloc functions which ones which redirect to the CafeOS default heap functions
# such as MEMAllocFromDefaultHeap. # such as MEMAllocFromDefaultHeap.
WUT_DEFAULT_MALLOC := 0 WUT_DEFAULT_MALLOC := 1
# Target filename # Target filename
TARGET := $(notdir $(CURDIR)).mod TARGET := $(notdir $(CURDIR)).mod