~ubuntu-branches/ubuntu/precise/boinc/precise

« back to all changes in this revision

Viewing changes to tools/Makefile.am

Tags: 6.12.8+dfsg-1
* New upstream release.
* Simplified debian/rules

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
## -*- mode: makefile; tab-width: 4 -*-
2
2
include $(top_srcdir)/Makefile.incl
3
3
 
 
4
scheddir = $(libexecdir)/sched
 
5
 
4
6
bin_PROGRAMS = create_work sign_executable dir_hier_path dir_hier_move
5
7
 
6
 
EXTRA_DIST = make_project xadd update_versions dbcheck_files_exist upgrade makelog.sh cleanlogs.sh vote_monitor calculate_credit_multiplier
7
 
 
8
 
LDADD = $(LIBSCHED) $(LIBBOINC) $(RSA_LIBS) $(MYSQL_LIBS)
9
 
AM_CXXFLAGS = $(MYSQL_CFLAGS)
10
 
 
11
 
create_work_SOURCES =           \
12
 
    create_work.cpp
13
 
 
14
 
sign_executable_SOURCES =       \
15
 
    sign_executable.cpp
16
 
 
17
 
dir_hier_path_SOURCES = \
18
 
    dir_hier_path.cpp
19
 
 
20
 
dir_hier_move_SOURCES = \
21
 
    dir_hier_move.cpp
 
8
dist_bin_SCRIPTS = \
 
9
                calculate_credit_multiplier \
 
10
                dbcheck_files_exist \
 
11
                grep_logs \
 
12
                make_project \
 
13
                parse_config \
 
14
                update_versions \
 
15
                upgrade \
 
16
                vote_monitor \
 
17
                xadd
 
18
 
 
19
dist_sched_SCRIPTS = \
 
20
                cleanlogs.sh \
 
21
                makelog.sh \
 
22
                run_in_ops
 
23
 
 
24
AM_CXXFLAGS += $(MYSQL_CFLAGS)
 
25
AM_LDFLAGS += -static
 
26
 
 
27
create_work_SOURCES = create_work.cpp
 
28
create_work_LDADD = $(SERVERLIBS)
 
29
 
 
30
sign_executable_SOURCES = sign_executable.cpp
 
31
sign_executable_LDADD = $(SERVERLIBS)
 
32
 
 
33
dir_hier_path_SOURCES = dir_hier_path.cpp
 
34
dir_hier_path_LDADD = $(SERVERLIBS)
 
35
 
 
36
dir_hier_move_SOURCES = dir_hier_move.cpp
 
37
dir_hier_move_LDADD = $(SERVERLIBS)