Commit 4d088fa9 authored by Marcus Meissner's avatar Marcus Meissner Committed by Alexandre Julliard

Do tools/ before any of the other subdirectories, even when doing

parallel makes.
parent b2682d4d
...@@ -184,12 +184,12 @@ wine wine.sym: $(LIB_TARGET) $(EMUOBJS) $(X11OBJS) $(LIBOBJS) dummy ...@@ -184,12 +184,12 @@ wine wine.sym: $(LIB_TARGET) $(EMUOBJS) $(X11OBJS) $(LIBOBJS) dummy
nm -n wine | grep -v _compiled >wine.sym nm -n wine | grep -v _compiled >wine.sym
@echo "Wine build complete." @echo "Wine build complete."
libwine.a: $(TOOLSUBDIRS) $(LIBOBJS) $(X11OBJS) libwine.a: $(LIBOBJS) $(X11OBJS)
$(RM) $@ $(RM) $@
$(AR) $@ $(LIBOBJS) $(X11OBJS) $(AR) $@ $(LIBOBJS) $(X11OBJS)
$(RANLIB) $@ $(RANLIB) $@
libwine.so.1.0: $(TOOLSUBDIRS) $(LIBOBJS) $(X11OBJS) libwine.so.1.0: $(LIBOBJS) $(X11OBJS)
$(LDSHARED) -o$@ $(LIBOBJS) $(X11OBJS) $(LDOPTIONS) $(LDSHARED) -o$@ $(LIBOBJS) $(X11OBJS) $(LDOPTIONS)
ln -sf $@ libwine.so ln -sf $@ libwine.so
...@@ -212,7 +212,7 @@ install_lib: dummy ...@@ -212,7 +212,7 @@ install_lib: dummy
uninstall_lib: dummy uninstall_lib: dummy
cd $(libdir); $(RM) $(LIB_TARGET) libwine.a libwine.so wine.sym cd $(libdir); $(RM) $(LIB_TARGET) libwine.a libwine.so wine.sym
$(X11OBJS) $(EMUOBJS) $(LIBOBJS): dummy $(X11OBJS) $(EMUOBJS) $(LIBOBJS): $(TOOLSUBDIRS) dummy
@cd `dirname $@`; $(SUBMAKE) @cd `dirname $@`; $(SUBMAKE)
$(BUILDSUBDIRS): dummy $(BUILDSUBDIRS): dummy
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment