diff options
| author | Daniel Stenberg <daniel@haxx.se> | 2006-09-02 21:31:16 +0000 |
|---|---|---|
| committer | Daniel Stenberg <daniel@haxx.se> | 2006-09-02 21:31:16 +0000 |
| commit | 30461369def481c2eb53d36f63644eaff7de4a1d (patch) | |
| tree | 7a446b1040a171b0e27586cec5a14c024b76d3df /apps/codecs/Makefile | |
| parent | 1fe5fc935c8b1d39c82a75361bc7c6d34648f3e1 (diff) | |
| download | rockbox-30461369def481c2eb53d36f63644eaff7de4a1d.zip rockbox-30461369def481c2eb53d36f63644eaff7de4a1d.tar.gz rockbox-30461369def481c2eb53d36f63644eaff7de4a1d.tar.bz2 rockbox-30461369def481c2eb53d36f63644eaff7de4a1d.tar.xz | |
settings.h includs button.h that includes target-button.h so we need to make
sure all these knows how to find that include file as otherwise does the
depfile generation break down
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@10858 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps/codecs/Makefile')
| -rw-r--r-- | apps/codecs/Makefile | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/apps/codecs/Makefile b/apps/codecs/Makefile index 6e4663b..695b454 100644 --- a/apps/codecs/Makefile +++ b/apps/codecs/Makefile @@ -9,7 +9,7 @@ INCLUDES = -I$(FIRMDIR)/include -I$(FIRMDIR)/export -I$(FIRMDIR)/common \ -I$(FIRMDIR)/drivers -I$(APPSDIR) -Ilib -I$(BUILDDIR) -CFLAGS = $(INCLUDES) $(GCCOPTS) $(TARGET) $(EXTRA_DEFINES) \ +CFLAGS = $(INCLUDES) $(GCCOPTS) $(TARGET_INC) $(TARGET) $(EXTRA_DEFINES) \ -DTARGET_ID=$(TARGET_ID) -DMEM=${MEMORYSIZE} -DCODEC ifdef APPEXTRA @@ -68,7 +68,6 @@ $(OBJDIR)/%.elf : -lgcc -T$(LINKCODEC) -Wl,-Map,$(OBJDIR)/$*.map $(BUILDDIR)/%.a : % $(CODECDEPS) - $(OBJDIR)/%.codec : $(OBJDIR)/%.elf @echo "OBJCOPY $(notdir $@)" |