summaryrefslogtreecommitdiff
path: root/apps/plugins/plugins.make
diff options
context:
space:
mode:
Diffstat (limited to 'apps/plugins/plugins.make')
-rw-r--r--apps/plugins/plugins.make8
1 files changed, 4 insertions, 4 deletions
diff --git a/apps/plugins/plugins.make b/apps/plugins/plugins.make
index 532dba68c0..ed432d92be 100644
--- a/apps/plugins/plugins.make
+++ b/apps/plugins/plugins.make
@@ -33,7 +33,7 @@ PLUGIN_LDS := $(APPSDIR)/plugins/plugin.lds
33PLUGINLINK_LDS := $(BUILDDIR)/apps/plugins/plugin.link 33PLUGINLINK_LDS := $(BUILDDIR)/apps/plugins/plugin.link
34OVERLAYREF_LDS := $(BUILDDIR)/apps/plugins/overlay_ref.link 34OVERLAYREF_LDS := $(BUILDDIR)/apps/plugins/overlay_ref.link
35endif 35endif
36 36PLUGIN_CRT0 := $(BUILDDIR)/apps/plugins/plugin_crt0.o
37# multifile plugins (subdirs): 37# multifile plugins (subdirs):
38PLUGINSUBDIRS := $(call preprocess, $(APPSDIR)/plugins/SUBDIRS) 38PLUGINSUBDIRS := $(call preprocess, $(APPSDIR)/plugins/SUBDIRS)
39 39
@@ -49,7 +49,7 @@ PLUGINFLAGS = -I$(APPSDIR)/plugins -DPLUGIN $(CFLAGS)
49$(ROCKS1): $(BUILDDIR)/%.rock: $(BUILDDIR)/%.o 49$(ROCKS1): $(BUILDDIR)/%.rock: $(BUILDDIR)/%.o
50 50
51# dependency for all plugins 51# dependency for all plugins
52$(ROCKS): $(APPSDIR)/plugin.h $(PLUGINLINK_LDS) $(PLUGINLIB) $(PLUGINBITMAPLIB) 52$(ROCKS): $(APPSDIR)/plugin.h $(PLUGINLINK_LDS) $(PLUGINLIB) $(PLUGINBITMAPLIB) $(PLUGIN_CRT0) $(LIBSETJMP)
53 53
54$(PLUGINLIB): $(PLUGINLIB_OBJ) 54$(PLUGINLIB): $(PLUGINLIB_OBJ)
55 $(SILENT)$(shell rm -f $@) 55 $(SILENT)$(shell rm -f $@)
@@ -89,7 +89,7 @@ else
89endif 89endif
90PLUGINLDFLAGS += $(GLOBAL_LDOPTS) 90PLUGINLDFLAGS += $(GLOBAL_LDOPTS)
91 91
92$(BUILDDIR)/%.rock: $(LIBSETJMP) 92$(BUILDDIR)/%.rock:
93 $(call PRINTS,LD $(@F))$(CC) $(PLUGINFLAGS) -o $(BUILDDIR)/$*.elf \ 93 $(call PRINTS,LD $(@F))$(CC) $(PLUGINFLAGS) -o $(BUILDDIR)/$*.elf \
94 $(filter %.o, $^) \ 94 $(filter %.o, $^) \
95 $(filter %.a, $+) \ 95 $(filter %.a, $+) \
@@ -103,7 +103,7 @@ endif
103$(BUILDDIR)/apps/plugins/%.lua: $(ROOTDIR)/apps/plugins/%.lua 103$(BUILDDIR)/apps/plugins/%.lua: $(ROOTDIR)/apps/plugins/%.lua
104 $(call PRINTS,CP $(subst $(ROOTDIR)/,,$<))cp $< $(BUILDDIR)/apps/plugins/ 104 $(call PRINTS,CP $(subst $(ROOTDIR)/,,$<))cp $< $(BUILDDIR)/apps/plugins/
105 105
106$(BUILDDIR)/%.refmap: $(APPSDIR)/plugin.h $(OVERLAYREF_LDS) $(PLUGINLIB) $(PLUGINBITMAPLIB) 106$(BUILDDIR)/%.refmap: $(APPSDIR)/plugin.h $(OVERLAYREF_LDS) $(PLUGINLIB) $(PLUGINBITMAPLIB) $(LIBSETJMP) $(PLUGIN_CRT0)
107 $(call PRINTS,LD $(@F))$(CC) $(PLUGINFLAGS) -o /dev/null \ 107 $(call PRINTS,LD $(@F))$(CC) $(PLUGINFLAGS) -o /dev/null \
108 $(filter %.o, $^) \ 108 $(filter %.o, $^) \
109 $(filter %.a, $+) \ 109 $(filter %.a, $+) \