Skip to content

Commit

Permalink
Minor adjustments to the example plugin makefile
Browse files Browse the repository at this point in the history
  • Loading branch information
Maschell committed Jun 30, 2018
1 parent 4bdca98 commit 2f074ac
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion plugins/example_plugin/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion plugins/example_plugin/makefile.mk
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 2f074ac

Please sign in to comment.