From acc19d320bf3ba331dae4ba59252bf27deb86ded Mon Sep 17 00:00:00 2001 From: James Juran Date: Sat, 7 Aug 1999 14:07:53 +0000 Subject: [PATCH] Make sure we compile winestub.o before trying to build a Winelib test program. --- libtest/Makefile.in | 23 +++++++++++++---------- 1 file changed, 13 insertions(+), 10 deletions(-) diff --git a/libtest/Makefile.in b/libtest/Makefile.in index 911b870b3b..d3eacba336 100644 --- a/libtest/Makefile.in +++ b/libtest/Makefile.in @@ -31,35 +31,38 @@ depend:: $(RC_SRCS:.rc=.h) $(RC_SRCS:.rc=.s): $(WRC) -expand: expand.o +$(WINESTUB): + @cd ../library && $(SUBMAKE) + +expand: expand.o $(WINESTUB) $(CC) -o expand expand.o $(LDOPTIONS) $(ALL_LIBS) -hello: hello.o +hello: hello.o $(WINESTUB) $(CC) -o hello hello.o $(LDOPTIONS) $(ALL_LIBS) -hello2: hello2.o +hello2: hello2.o $(WINESTUB) $(CC) -o hello2 hello2.o $(LDOPTIONS) $(ALL_LIBS) -hello3: hello3res.o hello3.o +hello3: hello3res.o hello3.o $(WINESTUB) $(CC) -o hello3 hello3.o hello3res.o $(LDOPTIONS) $(ALL_LIBS) hello3.o: hello3res.h -hello4: hello4.o +hello4: hello4.o $(WINESTUB) $(CC) -o hello4 hello4.o $(LDOPTIONS) $(ALL_LIBS) -hello5: hello5.o +hello5: hello5.o $(WINESTUB) $(CC) -o hello5 hello5.o $(LDOPTIONS) $(ALL_LIBS) -new: new.o +new: new.o $(WINESTUB) $(CC) -o new new.o $(LDOPTIONS) $(ALL_LIBS) -rolex: rolex.o +rolex: rolex.o $(WINESTUB) $(CC) -o rolex rolex.o $(LDOPTIONS) $(ALL_LIBS) -vartest: vartest.o +vartest: vartest.o $(WINESTUB) $(CC) -o vartest vartest.o $(LDOPTIONS) $(ALL_LIBS) -volinfo: volinfo.o +volinfo: volinfo.o $(WINESTUB) $(CC) -o volinfo volinfo.o $(LDOPTIONS) $(ALL_LIBS) ### Dependencies: -- 2.32.0.93.g670b81a890