mirror of https://github.com/BOINC/boinc.git
26 lines
661 B
Makefile
26 lines
661 B
Makefile
## $Id$
|
|
|
|
include $(top_srcdir)/Makefile.incl
|
|
|
|
bin_PROGRAMS = md5_test shmem_test crypt_prog
|
|
EXTRA_PROGRAMS = msg_test synch_test
|
|
noinst_LIBRARIES = libboinc.a
|
|
|
|
libboinc_a_SOURCES = \
|
|
app_ipc.C \
|
|
countries.C \
|
|
parse.C \
|
|
filesys.C \
|
|
language.C \
|
|
util.C \
|
|
md5.c \
|
|
md5_file.C
|
|
|
|
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
|
|
synch_test_SOURCES = synch_test.C synch.C
|
|
crypt_prog_SOURCES = crypt_prog.C crypt.C md5.c md5_file.C
|
|
#crypt_prog_DEPENDENCIES = LIBRSA
|
|
crypt_prog_LDADD = $(RSA_LIBS)
|