diff options
author | Daniel Stenberg <daniel@haxx.se> | 2004-09-15 13:38:55 +0000 |
---|---|---|
committer | Daniel Stenberg <daniel@haxx.se> | 2004-09-15 13:38:55 +0000 |
commit | e5691c06138e722b380681e58b0e9f9644e43434 (patch) | |
tree | ed58ef89e7f423e767feeeb2fb3a22e8a206019c /apps | |
parent | 4392463089ae3e2ddda9f9b9b8bf01ee671f52d3 (diff) |
temporarily disabled building of plugins for Ondio
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@5079 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps')
-rw-r--r-- | apps/plugins/Makefile | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/apps/plugins/Makefile b/apps/plugins/Makefile index ddd617a67a..ded54e8a4b 100644 --- a/apps/plugins/Makefile +++ b/apps/plugins/Makefile @@ -58,8 +58,13 @@ $(OBJDIR)/%.o: %.c ../plugin.h Makefile @echo "CC $<" @$(CC) $(CFLAGS) -c $< -o $@ +ifeq ($(ANYONDIO), ONDIO) +all: + @echo "no plugin support yet" +else all: $(OBJDIR)/libplugin.a $(ROCKS) @echo "plugins done" +endif $(OBJDIR)/libplugin.a: @echo "MAKE in lib" |