2005-06-22 19:41:30 +00:00
|
|
|
# __________ __ ___.
|
|
|
|
# Open \______ \ ____ ____ | | _\_ |__ _______ ___
|
|
|
|
# Source | _// _ \_/ ___\| |/ /| __ \ / _ \ \/ /
|
|
|
|
# Jukebox | | ( <_> ) \___| < | \_\ ( <_> > < <
|
|
|
|
# Firmware |____|_ /\____/ \___ >__|_ \|___ /\____/__/\_ \
|
|
|
|
# \/ \/ \/ \/ \/
|
|
|
|
# $Id$
|
|
|
|
#
|
|
|
|
|
|
|
|
# ../.. for the codec.h in the apps dir
|
|
|
|
# .. for stuff in the codecs dir
|
|
|
|
# . for stuff in the codeclib dir
|
2006-07-27 13:27:31 +00:00
|
|
|
INCLUDES=-I$(APPSDIR) -I.. -I. $(TARGET_INC) -I$(FIRMDIR)/include -I$(FIRMDIR)/export \
|
2005-06-22 19:41:30 +00:00
|
|
|
-I$(FIRMDIR)/common -I$(BUILDDIR)
|
|
|
|
|
|
|
|
ifdef APPEXTRA
|
2005-10-27 14:39:00 +00:00
|
|
|
INCLUDES += $(patsubst %,-I$(APPSDIR)/%,$(subst :, ,$(APPEXTRA)))
|
2005-06-22 19:41:30 +00:00
|
|
|
endif
|
|
|
|
|
2006-02-24 13:48:52 +00:00
|
|
|
CFLAGS = $(INCLUDES) $(GCCOPTS) \
|
|
|
|
$(TARGET) $(EXTRA_DEFINES) -DMEM=${MEMORYSIZE} -DCODEC
|
2005-06-22 19:41:30 +00:00
|
|
|
|
|
|
|
# This sets up 'SRC' based on the files mentioned in SOURCES
|
|
|
|
include $(TOOLSDIR)/makesrc.inc
|
|
|
|
|
|
|
|
SOURCES = $(SRC)
|
|
|
|
OBJS := $(SRC:%.c=$(OBJDIR)/%.o)
|
|
|
|
DEPFILE = $(OBJDIR)/dep-codeclib
|
|
|
|
DIRS = .
|
|
|
|
|
|
|
|
OUTPUT = $(BUILDDIR)/libcodec.a
|
|
|
|
|
|
|
|
all: $(OUTPUT)
|
|
|
|
|
|
|
|
$(OUTPUT): $(OBJS)
|
2006-10-23 22:33:39 +00:00
|
|
|
@echo "AR+RANLIB $(notdir $@)"
|
2005-06-22 19:41:30 +00:00
|
|
|
@$(AR) ruv $@ $+ >/dev/null 2>&1
|
|
|
|
@$(RANLIB) $@
|
|
|
|
|
|
|
|
include $(TOOLSDIR)/make.inc
|
|
|
|
|
|
|
|
clean:
|
2005-06-22 19:54:43 +00:00
|
|
|
@echo "cleaning codecs/lib"
|
2005-06-22 19:41:30 +00:00
|
|
|
@rm -f $(OBJS) $(OUTPUT) $(DEPFILE)
|
|
|
|
|
|
|
|
-include $(DEPFILE)
|