From 7d2e7305cf233e4e41fa697c62f99e5a967ca79c Mon Sep 17 00:00:00 2001 From: nehalmistry <> Date: Fri, 28 Feb 2003 03:18:35 +0000 Subject: [PATCH] fix building startool --- Makefile | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Makefile b/Makefile index ea6f349d8..31387dbc4 100644 --- a/Makefile +++ b/Makefile @@ -199,6 +199,8 @@ tools/wartool$(EXE): tools/wartool.c $(CC) $(CFLAGS) -o $@ $< $(TOOLLIBS) tools/startool$(EXE): tools/startool.c $(TOPDIR)/src/clone/$(OBJDIR)/mpq.o + if [ ! -d $(TOPDIR)/src/clone/$(OBJDIR) ]; then \ + mkdir -p $(TOPDIR)/src/clone/$(OBJDIR); fi $(CC) $(CFLAGS) -o $@ $< $(TOOLLIBS) $(TOPDIR)/src/clone/$(OBJDIR)/mpq.o ##############################################################################