## -*- mode: make; tab-width: 4 -*- ## $Id$ include $(top_srcdir)/Makefile.incl # (for a while we used "-static -static-libgcc" on linux, but this is obsolete # now) #STATIC_FLAGS=@STATIC_FLAGS@ client-bin: @CLIENT_BIN_FILENAME@ LIBS += @CLIENTLIBS@ bin_PROGRAMS = boinc_client EXTRA_PROGRAMS = cpu_benchmark boinc_client_SOURCES = \ acct_mgr.C \ acct_setup.C \ app.C \ app_control.C \ app_graphics.C \ app_start.C \ check_state.C \ client_msgs.C \ client_state.C \ client_types.C \ cs_account.C \ cs_apps.C \ cs_benchmark.C \ cs_cmdline.C \ cs_data.C \ cs_files.C \ cs_prefs.C \ cs_scheduler.C \ cs_statefile.C \ cs_trickle.C \ dhrystone.C \ dhrystone2.C \ file_names.C \ file_xfer.C \ gui_http.C \ gui_rpc_server.C \ gui_rpc_server_ops.C \ hostinfo_network.C \ hostinfo_unix.C \ http_curl.C \ log_flags.C \ main.C \ net_stats.C \ net_xfer_curl.C \ pers_file_xfer.C \ scheduler_op.C \ time_stats.C \ whetstone.C boinc_client_DEPENDENCIES = $(LIBRSA) boinc_client_CPPFLAGS = -D_USE_CURL -I../../curl-7.14.0/include -I $(srcdir)/win $(AM_CPPFLAGS) -O3 boinc_client_LDFLAGS = -static-libgcc boinc_client_LDADD = -L/usr/local/ssl/lib -lssl -L../../curl-7.14.0/lib -lcurl -L../lib -lboinc $(RSA_LIBS) $(PTHREAD_LIBS) #boinc_client_LDFLAGS = $(STATIC_FLAGS) # the following don't do anything cpu_benchmark_SOURCES = whetstone.C dhrystone.C cpu_benchmark_CFLAGS = -O3 $(AM_CFLAGS) all-local: client-bin # make a hard link to the client name. @CLIENT_BIN_FILENAME@: boinc_client rm -f $@ @LN@ $? $@ @STRIP@ $@ ## these source files need to be specified because no rule uses them. EXTRA_DIST = *.h \ mac \ translation \ win clean-local: rm -f @CLIENT_BIN_FILENAME@