2004-06-18 09:05:15 +00:00
|
|
|
## -*- mode: make; tab-width: 4 -*-
|
2003-06-06 19:00:42 +00:00
|
|
|
## $Id$
|
|
|
|
|
|
|
|
include $(top_srcdir)/Makefile.incl
|
|
|
|
|
2004-10-19 06:29:26 +00:00
|
|
|
#if HAVE_NSL
|
2005-02-10 22:26:31 +00:00
|
|
|
nslprogs=boinc_cmd
|
2004-10-19 06:29:26 +00:00
|
|
|
#endif
|
2004-10-18 01:54:28 +00:00
|
|
|
|
|
|
|
bin_PROGRAMS = crypt_prog $(nslprogs)
|
|
|
|
|
2004-04-27 18:37:52 +00:00
|
|
|
EXTRA_PROGRAMS = md5_test shmem_test msg_test
|
2005-02-10 22:26:31 +00:00
|
|
|
boinc_cmd_SOURCES = boinc_cmd.C gui_rpc_client.C gui_rpc_client.h
|
|
|
|
boinc_cmd_LDADD = $(lib_LIBRARIES) $(PTHREAD_LIBS)
|
2004-10-18 01:54:28 +00:00
|
|
|
|
|
|
|
lib_LIBRARIES = libboinc.a
|
|
|
|
|
2004-09-04 23:42:27 +00:00
|
|
|
EXTRA_DIST = *.h *.C
|
2003-06-06 19:00:42 +00:00
|
|
|
|
2004-12-08 20:55:53 +00:00
|
|
|
libboinc_a_SOURCES = \
|
2005-03-13 21:05:46 +00:00
|
|
|
acct_mgr_client.C \
|
2004-12-08 20:55:53 +00:00
|
|
|
app_ipc.C \
|
2005-04-11 07:06:52 +00:00
|
|
|
base64.C \
|
2004-12-08 20:55:53 +00:00
|
|
|
crypt.C \
|
|
|
|
diagnostics.C \
|
|
|
|
exception.C \
|
|
|
|
filesys.C \
|
|
|
|
hostinfo.C \
|
|
|
|
language.C \
|
|
|
|
md5.c \
|
|
|
|
md5_file.C \
|
2004-12-14 20:28:13 +00:00
|
|
|
mem_usage.C \
|
2004-12-08 20:55:53 +00:00
|
|
|
mfile.C \
|
|
|
|
miofile.C \
|
|
|
|
msg_log.C \
|
2005-03-07 21:19:09 +00:00
|
|
|
network.C \
|
2004-12-08 20:55:53 +00:00
|
|
|
parse.C \
|
|
|
|
prefs.C \
|
|
|
|
proxy_info.C \
|
2005-04-11 07:06:52 +00:00
|
|
|
shmem.C \
|
|
|
|
util.C
|
|
|
|
|
2004-12-15 07:08:54 +00:00
|
|
|
include_HEADERS = \
|
2005-03-13 21:05:46 +00:00
|
|
|
acct_mgr_client.h \
|
2004-12-15 07:08:54 +00:00
|
|
|
app_ipc.h \
|
2005-03-07 21:19:09 +00:00
|
|
|
boinc_win.h \
|
2004-12-15 07:08:54 +00:00
|
|
|
diagnostics.h \
|
2005-03-07 21:19:09 +00:00
|
|
|
exception.h \
|
2004-12-15 07:08:54 +00:00
|
|
|
filesys.h \
|
|
|
|
hostinfo.h \
|
2005-03-07 21:19:09 +00:00
|
|
|
mfile.h \
|
|
|
|
miofile.h \
|
2005-03-14 01:08:34 +00:00
|
|
|
parse.h \
|
2004-12-15 07:08:54 +00:00
|
|
|
prefs.h \
|
2005-03-07 21:19:09 +00:00
|
|
|
proxy_info.h \
|
|
|
|
util.h
|
2003-06-06 19:00:42 +00:00
|
|
|
|
2004-10-18 01:54:28 +00:00
|
|
|
## install header-files with prefix-subdir BOINC/ to avoid name-conflicts
|
|
|
|
includedir = ${prefix}/include/BOINC/
|
|
|
|
|
2003-06-06 19:00:42 +00:00
|
|
|
md5_test_SOURCES = md5_test.C md5.c md5_file.C
|
|
|
|
shmem_test_SOURCES = shmem_test.C shmem.C
|
|
|
|
msg_test_SOURCES = msg_test.C msg_queue.C
|
|
|
|
crypt_prog_SOURCES = crypt_prog.C crypt.C md5.c md5_file.C
|
2003-06-08 00:49:48 +00:00
|
|
|
crypt_prog_DEPENDENCIES = $(LIBRSA)
|
2004-10-29 04:42:37 +00:00
|
|
|
crypt_prog_LDADD = $(RSA_LIBS) $(PTHREAD_LIBS)
|