diff options
| author | Daniel Stenberg <daniel@haxx.se> | 2005-05-07 22:41:17 +0000 |
|---|---|---|
| committer | Daniel Stenberg <daniel@haxx.se> | 2005-05-07 22:41:17 +0000 |
| commit | b8a23f9e4980e6a041d750c325ab2845aea8488a (patch) | |
| tree | d10400e99208595638f13e7fe3b279274a173e56 /apps/plugins/lib/Makefile | |
| parent | d23afcd4f4ad72b1c2c087055a9ba4457f2646cd (diff) | |
| download | rockbox-b8a23f9e4980e6a041d750c325ab2845aea8488a.zip rockbox-b8a23f9e4980e6a041d750c325ab2845aea8488a.tar.gz rockbox-b8a23f9e4980e6a041d750c325ab2845aea8488a.tar.bz2 rockbox-b8a23f9e4980e6a041d750c325ab2845aea8488a.tar.xz | |
Fixed makefiles for autoconf.g include.
Fixed build output look in several Makefiles
Fixed code to include autoconf.h
Fixed code to use ROCKBOX_*_ENDIAN instead of previous attempts.
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@6421 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps/plugins/lib/Makefile')
| -rw-r--r-- | apps/plugins/lib/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/apps/plugins/lib/Makefile b/apps/plugins/lib/Makefile index fbd4cef..21dea57 100644 --- a/apps/plugins/lib/Makefile +++ b/apps/plugins/lib/Makefile @@ -11,7 +11,7 @@ # .. for stuff in the plugins dir # . for stuff in the pluginlib dir INCLUDES=-I$(APPSDIR) -I.. -I. -I$(FIRMDIR)/include -I$(FIRMDIR)/export \ - -I$(FIRMDIR)/common -I$(FIRMDIR)/drivers + -I$(FIRMDIR)/common -I$(FIRMDIR)/drivers -I$(BUILDDIR) ifdef APPEXTRA INCLUDES += -I$(APPSDIR)/$(APPEXTRA) @@ -28,7 +28,7 @@ OBJS := $(SRC:%.c=$(OBJDIR)/%.o) DEPFILE = $(OBJDIR)/dep-pluginlib DIRS = . -OUTPUT = $(OBJDIR)/libplugin.a +OUTPUT = $(BUILDDIR)/libplugin.a all: $(OUTPUT) |