forked from BOINC/boinc
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathMakefile.am
132 lines (116 loc) · 3.14 KB
/
Makefile.am
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
## -*- mode: makefile; tab-width: 4 -*-
## $Id$
include $(top_srcdir)/Makefile.incl
LIBS += @CLIENTLIBS@
if OS_DARWIN
LIBS += -framework IOKit -framework Foundation -framework ScreenSaver -framework Cocoa -framework Security
mac_sources = mac/SystemMenu.m \
mac/mac_saver_module.cpp \
mac/Mac_Saver_ModuleView.m \
mac/MacSysMenu.cpp \
mac/Mac_GUI.cpp\
mac/browser_safari.mm
mac_headers = mac/*.h
else
mac_headers =
mac_sources =
endif
bin_PROGRAMS = boinc_gui
# keep the following alphabetic
boinc_gui_SOURCES = \
AccountInfoPage.cpp \
AccountManagerInfoPage.cpp \
AccountManagerProcessingPage.cpp \
AccountManagerPropertiesPage.cpp \
AdvancedFrame.cpp \
AlreadyAttachedPage.cpp \
AlreadyExistsPage.cpp \
AsyncRPC.cpp \
BOINCBaseFrame.cpp \
BOINCBaseView.cpp \
BOINCBaseWizard.cpp \
BOINCClientManager.cpp \
BOINCDialupManager.cpp \
BOINCGUIApp.cpp \
BOINCListCtrl.cpp \
BOINCTaskBar.cpp \
BOINCTaskCtrl.cpp \
browser.cpp \
CompletionErrorPage.cpp \
CompletionPage.cpp \
common/wxPieCtrl.cpp \
common/wxFlatNotebook.cpp \
DlgAbout.cpp \
DlgAdvPreferences.cpp \
DlgAdvPreferencesBase.cpp \
DlgExitMessage.cpp \
DlgGenericMessage.cpp \
DlgItemProperties.cpp \
DlgOptions.cpp \
DlgSelectComputer.cpp \
hyperlink.cpp \
LogBOINC.cpp \
MainDocument.cpp \
NoInternetConnectionPage.cpp \
NotDetectedPage.cpp \
NotFoundPage.cpp \
ProjectInfoPage.cpp \
ProjectListCtrl.cpp \
ProjectProcessingPage.cpp \
ProjectPropertiesPage.cpp \
ProxyInfoPage.cpp \
ProxyPage.cpp \
sg_BoincSimpleGUI.cpp \
sg_ClientStateIndicator.cpp \
sg_CustomControls.cpp \
sg_DlgMessages.cpp \
sg_DlgPreferences.cpp \
sg_ImageButton.cpp \
sg_ImageLoader.cpp \
sg_ProgressBar.cpp \
sg_ProjectsComponent.cpp \
sg_SGUIListControl.cpp \
sg_StatImageLoader.cpp \
sg_ViewTabPage.cpp \
SkinManager.cpp \
stdwx.cpp \
TermsOfUsePage.cpp \
UnavailablePage.cpp \
ValidateAccountKey.cpp \
ValidateEmailAddress.cpp \
ValidateURL.cpp \
ViewMessages.cpp \
ViewProjects.cpp \
ViewResources.cpp \
ViewStatistics.cpp \
ViewTransfers.cpp \
ViewWork.cpp \
WelcomePage.cpp \
WizardAccountManager.cpp \
WizardAttachProject.cpp \
wizardex.cpp \
$(mac_sources)
EXTRA_DIST = *.h \
res \
msw \
../lib/error_numbers.h \
locale $(mac_headers)
boinc_gui_CPPFLAGS = $(AM_CPPFLAGS) $(WX_CPPFLAGS) $(CLIENTGUIFLAGS)
boinc_gui_CXXFLAGS = $(AM_CXXFLAGS) $(WX_CXXFLAGS) $(CLIENTGUIFLAGS)
boinc_gui_LDADD = $(LIBBOINC) $(CLIENTGUILIBS)
all-local: client_gui-bin
client_gui-bin: @CLIENT_GUI_BIN_FILENAME@
win_config.h: $(top_srcdir)/config.h
grep '#define.*BOINC.*VERSION' $^ > $@
version: win_config.h
# make a hard link to the client name.
@CLIENT_GUI_BIN_FILENAME@: boinc_gui
rm -f $@
rm -f $@.unmodified
cp $? $@.unmodified
@LN@ $? $@
@STRIP@ $@
clean-local:
rm -f @CLIENT_GUI_BIN_FILENAME@
rm -f @CLIENT_GUI_BIN_FILENAME@.unmodified
.PHONY: version