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-06-21 17:54:10 +00:00
|
|
|
DlgAccountManagerSignup.cpp \
|
|
|
|
DlgAccountManagerStatus.cpp \
|
2005-06-29 05:21:47 +00:00
|
|
|
DlgDialupCredentials.cpp \
|
2004-09-28 02:46:57 +00:00
|
|
|
DlgAttachProject.cpp \
|
|
|
|
DlgOptions.cpp \
|
2005-03-31 19:01:44 +00:00
|
|
|
DlgSelectComputer.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 \
|
2005-04-04 18:55:42 +00:00
|
|
|
ViewStatistics.cpp \
|
2004-09-28 02:46:57 +00:00
|
|
|
ViewTransfers.cpp \
|
2005-04-11 07:06:52 +00:00
|
|
|
ViewWork.cpp \
|
2005-06-29 05:21:47 +00:00
|
|
|
../lib/gui_rpc_client.C \
|
|
|
|
hyperlink.cpp
|
2004-09-28 02:46:57 +00:00
|
|
|
|
2005-03-31 19:01:44 +00:00
|
|
|
EXTRA_DIST = *.h \
|
2005-03-13 23:20:33 +00:00
|
|
|
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-05-01 05:18:07 +00:00
|
|
|
boinc_gui_LDADD = -L../lib -lboinc $(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
|