2004-09-28 02:46:57 +00:00
|
|
|
## -*- mode: make; tab-width: 4 -*-
|
|
|
|
## $Id$
|
|
|
|
|
|
|
|
include $(top_srcdir)/Makefile.incl
|
|
|
|
|
2005-01-27 00:58:16 +00:00
|
|
|
LIBS += @CLIENTLIBS@
|
2004-09-28 02:46:57 +00:00
|
|
|
|
2004-11-23 12:54:33 +00:00
|
|
|
bin_PROGRAMS = boinc_gui
|
2004-09-28 02:46:57 +00:00
|
|
|
|
2004-11-23 12:54:33 +00:00
|
|
|
boinc_gui_SOURCES = \
|
2004-09-28 02:46:57 +00:00
|
|
|
BOINCBaseView.cpp \
|
|
|
|
BOINCGUIApp.cpp \
|
|
|
|
BOINCListCtrl.cpp \
|
|
|
|
BOINCTaskCtrl.cpp \
|
|
|
|
DlgAbout.cpp \
|
2005-03-13 23:20:33 +00:00
|
|
|
DlgAccountManager.cpp \
|
2004-09-28 02:46:57 +00:00
|
|
|
DlgAttachProject.cpp \
|
|
|
|
DlgConnection.cpp \
|
|
|
|
DlgOptions.cpp \
|
2005-02-01 00:54:06 +00:00
|
|
|
LogBOINC.cpp \
|
2004-09-28 02:46:57 +00:00
|
|
|
MainDocument.cpp \
|
|
|
|
MainFrame.cpp \
|
|
|
|
stdwx.cpp \
|
|
|
|
ValidateAccountKey.cpp \
|
|
|
|
ValidateURL.cpp \
|
|
|
|
ViewMessages.cpp \
|
|
|
|
ViewProjects.cpp \
|
|
|
|
ViewResources.cpp \
|
|
|
|
ViewTransfers.cpp \
|
|
|
|
ViewWork.cpp \
|
2005-03-13 21:05:46 +00:00
|
|
|
../lib/acct_mgr_client.C \
|
2005-02-04 21:05:58 +00:00
|
|
|
../lib/diagnostics.C \
|
2004-09-28 02:46:57 +00:00
|
|
|
../lib/gui_rpc_client.C \
|
|
|
|
../lib/filesys.C \
|
|
|
|
../lib/mfile.C \
|
|
|
|
../lib/miofile.C \
|
|
|
|
../lib/parse.C \
|
2005-01-02 18:20:36 +00:00
|
|
|
../lib/util.C \
|
2005-01-02 18:33:47 +00:00
|
|
|
../lib/md5_file.C \
|
2005-01-02 19:26:39 +00:00
|
|
|
../lib/md5.c
|
2004-09-28 02:46:57 +00:00
|
|
|
|
2005-03-13 23:20:33 +00:00
|
|
|
EXTRA_DIST = \
|
|
|
|
_wx_intellisense.h \
|
|
|
|
BOINCBaseView.h \
|
|
|
|
BOINCGUIApp.h \
|
|
|
|
BOINCListCtrl.h \
|
|
|
|
BOINCTaskBar.h \
|
|
|
|
BOINCTaskCtrl.h \
|
|
|
|
DlgAbout.h \
|
|
|
|
DlgAccountManager.h \
|
|
|
|
DlgAttachProject.h \
|
|
|
|
DlgConnection.h \
|
|
|
|
DlgOptions.h \
|
|
|
|
Events.h \
|
2005-03-14 00:57:57 +00:00
|
|
|
LogBOINC.h \
|
2005-03-13 23:20:33 +00:00
|
|
|
MainDocument.h \
|
|
|
|
MainFrame.h \
|
|
|
|
resource.h \
|
|
|
|
stdwx.h \
|
|
|
|
ValidateAccountKey.h \
|
|
|
|
ValidateURL.h \
|
|
|
|
ViewMessages.h \
|
|
|
|
ViewProjects.h \
|
|
|
|
ViewResources.h \
|
2005-03-14 00:47:52 +00:00
|
|
|
ViewTransfers.h \
|
2005-03-13 23:20:33 +00:00
|
|
|
ViewWork.h \
|
|
|
|
res \
|
|
|
|
msw \
|
|
|
|
locale
|
2004-11-26 17:45:13 +00:00
|
|
|
|
2004-11-23 12:54:33 +00:00
|
|
|
boinc_gui_CPPFLAGS = $(AM_CPPFLAGS) $(WX_CPPFLAGS) $(CLIENTGUIFLAGS)
|
|
|
|
boinc_gui_CXXFLAGS = $(AM_CXXFLAGS) $(WX_CXXFLAGS) $(CLIENTGUIFLAGS)
|
2005-01-20 17:04:21 +00:00
|
|
|
boinc_gui_LDADD = $(CLIENTGUILIBS)
|
2004-09-28 02:46:57 +00:00
|
|
|
|
2004-11-23 12:54:33 +00:00
|
|
|
all-local: client_gui-bin
|
|
|
|
client_gui-bin: @CLIENT_GUI_BIN_FILENAME@
|
2004-09-28 02:46:57 +00:00
|
|
|
|
|
|
|
win_config.h: $(top_srcdir)/config.h
|
|
|
|
grep '#define.*BOINC.*VERSION' $^ > $@
|
|
|
|
|
|
|
|
version: win_config.h
|
|
|
|
|
|
|
|
# make a hard link to the client name.
|
2004-11-23 12:54:33 +00:00
|
|
|
@CLIENT_GUI_BIN_FILENAME@: boinc_gui
|
2004-09-28 02:46:57 +00:00
|
|
|
rm -f $@
|
|
|
|
ln $? $@
|
|
|
|
|
|
|
|
clean-local:
|
2004-11-23 12:54:33 +00:00
|
|
|
rm -f @CLIENT_GUI_BIN_FILENAME@
|
2004-09-28 02:46:57 +00:00
|
|
|
|
|
|
|
.PHONY: version
|