From: Nicolas Boichat Date: Thu, 15 Apr 2004 23:20:51 +0000 (+0000) Subject: Added wxbtreectrl.* X-Git-Tag: Release-1.34.1~45 X-Git-Url: https://git.sur5r.net/?a=commitdiff_plain;h=d35f4480ec63372062dbcf4f8e856c504827fd10;p=bacula%2Fbacula Added wxbtreectrl.* git-svn-id: https://bacula.svn.sourceforge.net/svnroot/bacula/trunk@1208 91ce42f0-d328-0410-95d8-f526ca767f89 --- diff --git a/bacula/src/wx-console/Makefile.in b/bacula/src/wx-console/Makefile.in index ea491d0acb..919f704310 100644 --- a/bacula/src/wx-console/Makefile.in +++ b/bacula/src/wx-console/Makefile.in @@ -21,13 +21,14 @@ dummy: # CONSSRCS = main.cpp console_thread.cpp authenticate.c console_conf.c wxbrestorepanel.cpp \ - wxbmainframe.cpp wxbtableparser.cpp + wxbmainframe.cpp wxbtableparser.cpp wxbtreectrl.cpp CONSOBJS = main.o console_thread.o authenticate.o console_conf.o wxbrestorepanel.o \ - wxbmainframe.o wxbtableparser.o + wxbmainframe.o wxbtableparser.o wxbtreectrl.o @if test "@DISTNAME@" = "cygwin" then \ -CONSSRCS = $(CONSSRCS) wx-console_private.rc; \ -CONSOBJS = $(CONSOBJS) wx-console_private.res; \ +RES = wx-console_private.res; \ +else \ +RES = ;\ fi # these are the objects that are changed by the .configure process @@ -60,8 +61,8 @@ all: Makefile wx-console @echo " " -wx-console: $(CONSOBJS) ../lib/libbac.a - $(CXX) $(CONSOBJS) -o $@ $(LIBS) -L../lib $(CONS_LDFLAGS) -lbac +wx-console: $(CONSOBJS) $(RES) ../lib/libbac.a + $(CXX) $(CONSOBJS) $(RES) -o $@ $(LIBS) -L../lib $(CONS_LDFLAGS) -lbac wx-console_private.res: wx-console_private.rc windres.exe -i wx-console_private.rc -I rc -o wx-console_private.res -O coff