diff options
author | Daniel Stenberg <daniel@haxx.se> | 2004-11-24 16:45:08 +0000 |
---|---|---|
committer | Daniel Stenberg <daniel@haxx.se> | 2004-11-24 16:45:08 +0000 |
commit | c9d41b4b94882ade8fa4b706948dd860652b0af0 (patch) | |
tree | 97273084797063c9929ab90cc45f58134753207b /uisimulator/x11/Makefile | |
parent | 73d3b18ef6c4cac965a72eb954fe71cdf89c4860 (diff) |
Make the simulator builds acknowledge the plugins variable set in the configure
script.
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@5464 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'uisimulator/x11/Makefile')
-rw-r--r-- | uisimulator/x11/Makefile | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/uisimulator/x11/Makefile b/uisimulator/x11/Makefile index 683dca6b82..2c9d69d6a2 100644 --- a/uisimulator/x11/Makefile +++ b/uisimulator/x11/Makefile @@ -135,9 +135,9 @@ SRCS = screenhack.c uibasic.c resources.c visual.c lcd-x11.c \ OBJS := $(OBJDIR)/lang.o $(SRCS:%.c=$(OBJDIR)/%.o) -ifneq ($(ISONDIO),ONDIO) -ROCKS := $(patsubst $(PLUGINDIR)/%.c,$(OBJDIR)/%.rock,$(wildcard $(PLUGINDIR)/*.c)) -PLUGINLIBOBJS := $(patsubst $(PLUGINDIR)/lib/%.c,$(OBJDIR)/%.o,$(wildcard $(PLUGINDIR)/lib/*.c)) +ifdef ENABLEDPLUGINS + ROCKS := $(patsubst $(PLUGINDIR)/%.c,$(OBJDIR)/%.rock,$(wildcard $(PLUGINDIR)/*.c)) + PLUGINLIBOBJS := $(patsubst $(PLUGINDIR)/lib/%.c,$(OBJDIR)/%.o,$(wildcard $(PLUGINDIR)/lib/*.c)) endif all: $(TOOLSDIR)/convbdf $(EXEFILE) $(ROCKS) |