diff options
Diffstat (limited to 'apps/codecs/libFLAC/Makefile')
-rw-r--r-- | apps/codecs/libFLAC/Makefile | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/apps/codecs/libFLAC/Makefile b/apps/codecs/libFLAC/Makefile index ee4feab769..3a282597ff 100644 --- a/apps/codecs/libFLAC/Makefile +++ b/apps/codecs/libFLAC/Makefile @@ -31,7 +31,8 @@ $(INCLUDES) $(TARGET) $(EXTRA_DEFINES) -DMEM=${MEMORYSIZE} SRC := $(shell cat SOURCES | $(CC) -DMEMORYSIZE=$(MEMORYSIZE) $(INCLUDES) \ $(TARGET) $(DEFINES) -E -P -include "config.h" - ) SOURCES = $(SRC) -OBJS := $(SRC:%.c=$(OBJDIR)/libFLAC/%.o) +OBJS2 := $(SRC:%.c=$(OBJDIR)/%.o) +OBJS = $(patsubst %.S, $(OBJDIR)/%.o, $(OBJS2)) DEPFILE = $(OBJDIR)/dep-libFLAC DIRS = |