boinc/client/Makefile.in

131 lines
3.1 KiB
Makefile

DEPTH = ..
topsrcdir = @top_srcdir@
srcdir = @srcdir@
VPATH = @srcdir@
INSTALL_DIR = /usr/local/boinc
CFLAGS = -g -Wall @DEFS@ \
-I @srcdir@ \
-I @srcdir@/../api \
-I @srcdir@/../lib \
-I @srcdir@/../RSAEuro/source \
-I @srcdir@/win \
-I /usr/local/mysql/include \
-DHOST=\"@host@\" \
-DMAJOR_VERSION=$(BOINC_MAJOR_VERSION) \
-DMINOR_VERSION=$(BOINC_MINOR_VERSION)
CC = @CC@ $(CFLAGS)
CLIBS = @LIBS@
CLIENT_PROG = boinc_$(BOINC_MAJOR_VERSION).$(BOINC_MINOR_VERSION)_@host@
PROGS = $(CLIENT_PROG)
all: $(PROGS)
OBJS = \
account.o \
app.o \
client_state.o \
client_types.o \
cs_apps.o \
cs_files.o \
cs_scheduler.o \
file_names.o \
file_xfer.o \
hostinfo.o \
hostinfo_unix.o \
http.o \
log_flags.o \
net_stats.o \
net_xfer.o \
pers_file_xfer.o \
prefs.o \
scheduler_op.o \
speed_stats.o \
ss_logic.o \
time_stats.o \
../lib/app_ipc.o \
../lib/filesys.o \
../lib/language.o \
../lib/parse.o \
../lib/shmem.o \
../lib/md5_file.o \
../lib/md5.o \
../lib/crypt.o \
../lib/util.o \
../RSAEuro/source/rsaeuro.a
TEST_NET_XFER_OBJS = \
http.o \
log_flags.o \
net_xfer.o \
../lib/filesys.o \
../lib/parse.o \
../lib/util.o
TEST_HTTP_OBJS = $(TEST_NET_XFER_OBJS)
TEST_FX_OBJS = \
$(TEST_HTTP_OBJS) \
client_types.o \
file_names.o \
file_xfer.o
ARCHIVE_TARGETS = \
apps/*.C apps/*.in \
client/*.C client/*.h client/configure \
client/install-sh client/*.in client/*.sub client/*.guess \
client/mac/*.h client/mac/*.cpp \
client/win/*.h client/win/*.cpp client/win/*.rc \
client/win/*.ico client/win/*.def client/win/res/*.* \
client/translation/* \
lib/*.C lib/*.c lib/*.h \
api/*.C api/*.h api/*.in api/*.c api/*.cpp \
RSAEuro/*/*.c RSAEuro/*/*.h RSAEuro/*/*.in RSAEuro/*/*.mak \
mac_build/boinc.pbproj/*.pbxproj mac_build/*.lproj/*.nib/*.* \
mac_build/*.lproj/*.strings \
win_build/*.* win_build/*/*.dsp win_build/*/*.rct \
INSTALL LICENSE
speed_stats.o:
$(CC) -O6 -c -o speed_stats.o speed_stats.C
.C.o:
$(CC) -c -o $*.o $<
.c.o:
$(CC) -c -o $*.o $<
../RSAEuro/source/rsaeuro.a:
cd ../RSAEuro/source; ${MAKE}
$(CLIENT_PROG): main.o $(OBJS)
$(CC) main.o $(OBJS) $(CLIBS) -o $(CLIENT_PROG)
tar:
cd $(topsrcdir)/..; \
tar cf boinc_client_$(BOINC_MAJOR_VERSION).$(BOINC_MINOR_VERSION).tar $(ARCHIVE_TARGETS); \
gzip boinc_client_$(BOINC_MAJOR_VERSION).$(BOINC_MINOR_VERSION).tar;
zip:
cd $(topsrcdir)/..; zip -q boinc_client_$(BOINC_MAJOR_VERSION).$(BOINC_MINOR_VERSION).zip $(ARCHIVE_TARGETS)
clean:
rm -f *.o $(PROGS) core dependencies config.cache
cd ../RSAEuro/source; ${MAKE} clean;
cd ../lib; ${MAKE} clean;
cd ../api; ${MAKE} clean;
install: all
-mkdir -p $(INSTALL_DIR)/client
cp $(CLIENT_PROG) $(INSTALL_DIR)/client/$(CLIENT_PROG)
uninstall:
$(RM) -r $(INSTALL_DIR)/client
dependencies: @srcdir@/*.C
$(CC) -M @srcdir@/*.C > dependencies
include dependencies