summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLinus Nielsen Feltzing <linus@haxx.se>2004-07-21 13:13:59 +0000
committerLinus Nielsen Feltzing <linus@haxx.se>2004-07-21 13:13:59 +0000
commitb7aeed9d5779058bf6210fd735aa4d1c6f3012c6 (patch)
tree9d0a88d8a7e73c4a6079aaedb6653b19a48f631d
parentad5c0ed245e67c29e0a5b4bce5afc2a3ddbe61cf (diff)
downloadrockbox-b7aeed9d5779058bf6210fd735aa4d1c6f3012c6.tar.gz
rockbox-b7aeed9d5779058bf6210fd735aa4d1c6f3012c6.zip
Added dependency on the plugin library
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@4910 a1c6a512-1295-4272-9138-f99709370657
-rw-r--r--uisimulator/win32/Makefile4
1 files changed, 3 insertions, 1 deletions
diff --git a/uisimulator/win32/Makefile b/uisimulator/win32/Makefile
index 90b3abb193..212812d2ec 100644
--- a/uisimulator/win32/Makefile
+++ b/uisimulator/win32/Makefile
@@ -67,7 +67,7 @@ $(RTC) $(RADIO)
67LDFLAGS = -lgdi32 -luser32 67LDFLAGS = -lgdi32 -luser32
68 68
69# Use this for simulator-only files 69# Use this for simulator-only files
70INCLUDES = -I. -I$(EXPORT) -I$(APPDIR) -I$(MACHINEDIR) -I$(SIMCOMMON) -I$(MACHINEDIR) -I$(OBJDIR) 70INCLUDES = -I. -I$(EXPORT) -I$(APPDIR) -I$(MACHINEDIR) -I$(SIMCOMMON) -I$(OBJDIR) -I$(PLUGINDIR)/lib
71 71
72# The true Rockbox Applications should use this include path: 72# The true Rockbox Applications should use this include path:
73APPINCLUDES = $(INCLUDES) 73APPINCLUDES = $(INCLUDES)
@@ -130,6 +130,8 @@ PLUGINLIBOBJS := $(patsubst $(PLUGINDIR)/lib/%.c,$(OBJDIR)/%.o,$(wildcard $(PLUG
130 130
131all: $(TOOLSDIR)/convbdf $(TARGET) $(ROCKS) 131all: $(TOOLSDIR)/convbdf $(TARGET) $(ROCKS)
132 132
133$(ROCKS): $(OBJDIR)/libplugin.a
134
133$(TOOLSDIR)/convbdf: 135$(TOOLSDIR)/convbdf:
134 $(MAKE) -C $(TOOLSDIR) 136 $(MAKE) -C $(TOOLSDIR)
135 137