summaryrefslogtreecommitdiff
path: root/uisimulator
diff options
context:
space:
mode:
Diffstat (limited to 'uisimulator')
-rw-r--r--uisimulator/win32/Makefile5
-rw-r--r--uisimulator/x11/Makefile5
2 files changed, 8 insertions, 2 deletions
diff --git a/uisimulator/win32/Makefile b/uisimulator/win32/Makefile
index aa72171bdb..1ec4ccf357 100644
--- a/uisimulator/win32/Makefile
+++ b/uisimulator/win32/Makefile
@@ -119,7 +119,10 @@ ROCKSRCS := $(patsubst $(PLUGINDIR)/%.c,%.c,$(wildcard $(PLUGINDIR)/*.c))
119 119
120ROCKS := $(ROCKSRCS:%.c=$(OBJDIR)/%.rock) 120ROCKS := $(ROCKSRCS:%.c=$(OBJDIR)/%.rock)
121 121
122all: $(TARGET) $(ROCKS) 122all: $(TOOLSDIR)/convbdf $(TARGET) $(ROCKS)
123
124$(TOOLSDIR)/convbdf:
125 $(MAKE) -C $(TOOLSDIR)
123 126
124$(TARGET): $(OBJS) 127$(TARGET): $(OBJS)
125 $(CC) $(OBJS) -o $(TARGET) $(LDFLAGS) 128 $(CC) $(OBJS) -o $(TARGET) $(LDFLAGS)
diff --git a/uisimulator/x11/Makefile b/uisimulator/x11/Makefile
index 2ce4606468..fa3613767d 100644
--- a/uisimulator/x11/Makefile
+++ b/uisimulator/x11/Makefile
@@ -117,7 +117,10 @@ ROCKS := $(ROCKSRC:$(APPDIR)/plugins/%.c=$(OBJDIR)/%.rock)
117 117
118OBJS := $(OBJDIR)/lang.o $(SRCS:%.c=$(OBJDIR)/%.o) 118OBJS := $(OBJDIR)/lang.o $(SRCS:%.c=$(OBJDIR)/%.o)
119 119
120all: $(TARGET) $(EXTRA_TARGETS) $(ROCKS) 120all: $(TOOLSDIR)/convbdf $(TARGET) $(EXTRA_TARGETS) $(ROCKS)
121
122$(TOOLSDIR)/convbdf:
123 $(MAKE) -C $(TOOLSDIR)
121 124
122clean: 125clean:
123 $(RM) $(OBJS) *~ core $(TARGET) $(CLIENTS) $(OBJDIR)/lang.[cho] \ 126 $(RM) $(OBJS) *~ core $(TARGET) $(CLIENTS) $(OBJDIR)/lang.[cho] \