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

This commit is contained in:
Marcus Meissner 1999-07-24 12:12:43 +00:00 committed by Alexandre Julliard
parent 00bf3811ae
commit a4d0319550
1 changed files with 4 additions and 1 deletions

View File

@ -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)