1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165
|
include $(top_srcdir)/globus_automake_pre
Sources= \
globus_args.c \
globus_args.h \
globus_callback_$(GLOBUS_CALLBACK_BUILD).c \
globus_callback.h \
globus_options.c \
globus_options.h \
globus_i_callback.h \
globus_common_paths.c \
globus_common.c \
globus_debug.c \
globus_debug.h \
globus_error.c \
globus_error.h \
globus_error_hierarchy.c \
globus_error_hierarchy.h \
globus_error_generic.c \
globus_i_error_generic.c \
globus_error_generic.h \
globus_i_error_generic.h \
globus_error_errno.c \
globus_i_error_errno.c \
globus_error_errno.h \
globus_i_error_errno.h \
globus_fifo.c \
globus_fifo.h \
globus_handle_table.c \
globus_handle_table.h \
globus_hashtable.c \
globus_hashtable.h \
globus_i_thread.h \
globus_libc.c \
globus_libc.h \
globus_libc_setenv.c \
globus_list.c \
globus_list.h \
globus_logging.c \
globus_logging.h \
globus_memory.c \
globus_memory.h \
globus_module.c \
globus_module.h \
globus_object.c \
globus_object.h \
globus_object_cache.c \
globus_object_cache.h \
globus_object_hierarchy.c \
globus_object_hierarchy.h \
globus_print.c \
globus_print.h \
globus_priority_q.c \
globus_priority_q.h \
globus_range_list.c \
globus_range_list.h \
globus_release.h \
globus_strptime.c \
globus_strptime.h \
globus_symboltable.c \
globus_symboltable.h \
globus_thread_common.c \
globus_thread_common.h \
globus_thread_$(GLOBUS_THREADS).c \
globus_thread_$(GLOBUS_THREADS).h \
globus_thread_external.c \
globus_thread_external.h \
globus_thread_pool.c \
globus_thread_pool.h \
globus_thread_rw_mutex.c \
globus_thread_rw_mutex.h \
globus_thread_rmutex.c \
globus_thread_rmutex.h \
globus_tilde_expand.c \
globus_time.c \
globus_tilde_expand.h \
globus_time.h \
globus_url.c \
globus_url.h \
globus_states.h \
globus_states.c \
globus_error_string.c \
globus_error_string.h \
globus_extension.c \
globus_extension.h \
globus_common_include.h \
globus_uuid.c \
globus_uuid.h \
closedir.c \
freeaddrinfo.c \
gai_strerror.c \
getaddrinfo.c \
getnameinfo.c \
inet_addr.c \
inet_pton.c \
opendir.c \
readdir.c \
rewinddir.c \
globus_netos_libc.h
flavorinclude_HEADERS = \
$(OS_HEADERS) \
globus_release.h \
globus_module.h \
globus_url.h \
globus_states.h \
globus_list.h \
globus_hashtable.h \
globus_fifo.h \
globus_symboltable.h \
globus_logging.h \
globus_object.h \
globus_object_hierarchy.h \
globus_error.h \
globus_error_hierarchy.h \
globus_error_string.h \
globus_error_generic.h \
globus_error_errno.h \
globus_time.h \
globus_thread_pool.h \
globus_handle_table.h \
globus_callback.h \
globus_options.h \
globus_memory.h \
globus_print.h \
globus_priority_q.h \
globus_range_list.h \
globus_tilde_expand.h \
globus_libc.h \
globus_debug.h \
globus_args.h \
globus_strptime.h \
globus_thread_common.h \
globus_thread_rw_mutex.h \
globus_thread_rmutex.h \
globus_extension.h \
globus_common.h \
globus_thread_$(GLOBUS_THREADS).h \
globus_common_include.h \
globus_uuid.h
lib_LTLIBRARIES = libglobus_common_$(GLOBUS_FLAVOR_NAME).la
INCLUDES = @GPT_INCLUDES@
libglobus_common___GLOBUS_FLAVOR_NAME__la_LIBADD = @GPT_LIB_LINKS@
libglobus_common___GLOBUS_FLAVOR_NAME__la_SOURCES = $(Sources)
libglobus_common___GLOBUS_FLAVOR_NAME__la_LDFLAGS = @GPT_LDFLAGS@
EXTRA_DIST = \
globus_callback_nothreads.c \
globus_callback_threads.c \
globus_thread_none.c \
globus_thread_none.h \
globus_thread_pthreads.c \
globus_thread_pthreads.h \
globus_thread_solaristhreads.c \
globus_thread_solaristhreads.h \
globus_thread_sproc.c \
globus_thread_sproc.h
EXTRA_HEADERS =
include $(top_srcdir)/globus_automake_post
|