From 4d088fa9086013ed6d96580286ab966a8c0bf519 Mon Sep 17 00:00:00 2001 From: Marcus Meissner Date: Tue, 27 Jul 1999 16:11:17 +0000 Subject: [PATCH] Do tools/ before any of the other subdirectories, even when doing parallel makes. --- Makefile.in | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Makefile.in b/Makefile.in index 5bd7b52c321..74bb0d7a64f 100644 --- a/Makefile.in +++ b/Makefile.in @@ -184,12 +184,12 @@ wine wine.sym: $(LIB_TARGET) $(EMUOBJS) $(X11OBJS) $(LIBOBJS) dummy nm -n wine | grep -v _compiled >wine.sym @echo "Wine build complete." -libwine.a: $(TOOLSUBDIRS) $(LIBOBJS) $(X11OBJS) +libwine.a: $(LIBOBJS) $(X11OBJS) $(RM) $@ $(AR) $@ $(LIBOBJS) $(X11OBJS) $(RANLIB) $@ -libwine.so.1.0: $(TOOLSUBDIRS) $(LIBOBJS) $(X11OBJS) +libwine.so.1.0: $(LIBOBJS) $(X11OBJS) $(LDSHARED) -o$@ $(LIBOBJS) $(X11OBJS) $(LDOPTIONS) ln -sf $@ libwine.so @@ -212,7 +212,7 @@ install_lib: dummy uninstall_lib: dummy cd $(libdir); $(RM) $(LIB_TARGET) libwine.a libwine.so wine.sym -$(X11OBJS) $(EMUOBJS) $(LIBOBJS): dummy +$(X11OBJS) $(EMUOBJS) $(LIBOBJS): $(TOOLSUBDIRS) dummy @cd `dirname $@`; $(SUBMAKE) $(BUILDSUBDIRS): dummy -- 2.11.4.GIT