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
|
2004-10-18 01:54:28 +00:00
|
|
|
nslprogs=gui_test
|
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
|
2004-10-18 01:54:28 +00:00
|
|
|
|
|
|
|
##LIBS = -lnsl -lsocket
|
|
|
|
gui_test_SOURCES = gui_test.C gui_rpc_client.C gui_rpc_client.h
|
2004-10-29 04:42:37 +00:00
|
|
|
gui_test_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 = \
|
|
|
|
app_ipc.C \
|
|
|
|
base64.C \
|
|
|
|
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 \
|
|
|
|
parse.C \
|
|
|
|
prefs.C \
|
|
|
|
proxy_info.C \
|
|
|
|
shmem.C \
|
|
|
|
util.C \
|
2004-12-04 00:56:22 +00:00
|
|
|
base64.h \
|
|
|
|
crypt.h \
|
|
|
|
error_numbers.h \
|
|
|
|
exception.h \
|
|
|
|
gui_rpc_client.h \
|
|
|
|
language.h \
|
|
|
|
md5_file.h \
|
|
|
|
md5.h \
|
|
|
|
msg_log.h \
|
|
|
|
msg_queue.h \
|
|
|
|
parse.h \
|
|
|
|
result_state.h \
|
|
|
|
shmem.h \
|
|
|
|
stackwalker_win.h \
|
|
|
|
std_fixes.h \
|
|
|
|
synch.h
|
|
|
|
|
2004-12-15 07:08:54 +00:00
|
|
|
include_HEADERS = \
|
|
|
|
app_ipc.h \
|
|
|
|
diagnostics.h \
|
|
|
|
filesys.h \
|
|
|
|
boinc_win.h \
|
|
|
|
mfile.h \
|
|
|
|
util.h \
|
|
|
|
hostinfo.h \
|
|
|
|
proxy_info.h \
|
|
|
|
prefs.h \
|
|
|
|
exception.h \
|
|
|
|
miofile.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)
|