From: Nicolas Boichat Date: Mon, 19 Apr 2004 18:52:29 +0000 (+0000) Subject: Fixed dependencies (../libbac.a). X-Git-Tag: Release-1.34.1~3 X-Git-Url: https://git.sur5r.net/?a=commitdiff_plain;h=170f669b8c78693e92f5f59b31ffb48474144674;p=bacula%2Fbacula Fixed dependencies (../libbac.a). git-svn-id: https://bacula.svn.sourceforge.net/svnroot/bacula/trunk@1250 91ce42f0-d328-0410-95d8-f526ca767f89 --- diff --git a/bacula/src/wx-console/Makefile.mingw b/bacula/src/wx-console/Makefile.mingw index a7d7cc84b4..89612811a3 100644 --- a/bacula/src/wx-console/Makefile.mingw +++ b/bacula/src/wx-console/Makefile.mingw @@ -19,9 +19,13 @@ all: all-before wx-console.exe all-after clean: clean-custom rm -f $(OBJ) $(BIN) -$(BIN): $(OBJ) +$(BIN): $(OBJ) ../lib/libbac.a $(CPP) $(LINKOBJ) -o "wx-console.exe" $(LIBS) +../lib/libbac.a: ../lib/*.c* + (cd ../lib/; $(MAKE) -f Makefile.mingw DESTDIR=$(DESTDIR)) + @rm -f bacula-fd.exe + main.o: main.cpp $(CPP) -c main.cpp -o main.o $(CXXFLAGS)