Commit a4d03195 authored by Marcus Meissner's avatar Marcus Meissner Committed by Alexandre Julliard

Trying to fix parallel make by doing direct subdir/subdir.o rules.

parent 00bf3811
......@@ -176,7 +176,7 @@ emu: wine
lib: $(LIBSUBDIRS) $(X11SUBDIRS) $(LIB_TARGET)
wine wine.sym: $(LIBSUBDIRS) $(X11SUBDIRS) $(LIB_TARGET) $(EMUSUBDIRS) dummy
wine wine.sym: $(LIB_TARGET) $(EMUOBJS) dummy
$(CC) -o wine $(EMUOBJS) $(ALT_LINK) $(LDOPTIONS) $(X_LIBS) $(XLIB) $(LIBS)
nm -n wine | grep -v _compiled >wine.sym
@echo "Wine build complete."
......@@ -209,6 +209,9 @@ install_lib: dummy
uninstall_lib: dummy
cd $(libdir); $(RM) $(LIB_TARGET) libwine.a libwine.so wine.sym
$(X11OBJS) $(EMUOBJS) $(LIBOBJS): dummy
@cd `dirname $@`; $(SUBMAKE)
$(BUILDSUBDIRS): dummy
@cd $@; $(SUBMAKE)
......
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