~brianaker/gearmand/gearmnan_job_use_client

« back to all changes in this revision

Viewing changes to docs/examples.mk

  • Committer: Brian Aker
  • Date: 2013-08-16 08:58:49 UTC
  • mto: This revision was merged to the branch mainline in revision 863.
  • Revision ID: brian@tangent.org-20130816085849-640pqqvyzxt1o3mi
Fix build so that make j works again

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
# vim:ft=automake
 
2
# included from Top Level Makefile.am
 
3
# All paths should be given relative to the root
 
4
 
 
5
 
 
6
noinst_PROGRAMS+= docs/libgearman/examples/gearman_client_do_background_example
 
7
noinst_PROGRAMS+= docs/libgearman/examples/gearman_client_do_example
 
8
noinst_PROGRAMS+= docs/libgearman/examples/gearman_execute_example
 
9
noinst_PROGRAMS+= docs/libgearman/examples/gearman_execute_partition
 
10
 
 
11
docs_libgearman_examples_gearman_execute_example_SOURCES= docs/libgearman/examples/gearman_execute_example.c
 
12
docs_libgearman_examples_gearman_execute_example_LDADD= libgearman/libgearman.la
 
13
 
 
14
docs_libgearman_examples_gearman_execute_partition_SOURCES= docs/libgearman/examples/gearman_execute_partition.c
 
15
docs_libgearman_examples_gearman_execute_partition_LDADD= libgearman/libgearman.la
 
16
 
 
17
docs_libgearman_examples_gearman_client_do_example_SOURCES= docs/libgearman/examples/gearman_client_do_example.c
 
18
docs_libgearman_examples_gearman_client_do_example_LDADD= libgearman/libgearman.la
 
19
 
 
20
docs_libgearman_examples_gearman_client_do_background_example_SOURCES= docs/libgearman/examples/gearman_client_do_background_example.c
 
21
docs_libgearman_examples_gearman_client_do_background_example_LDADD= libgearman/libgearman.la
 
22