You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
31 lines
518 B
31 lines
518 B
noinst_LIBRARIES = libuasync.a |
|
|
|
libuasync_a_SOURCES = \ |
|
u_async.c \ |
|
u_async.h \ |
|
ll_queue.h \ |
|
ll_queue.c \ |
|
debug_config.c \ |
|
debug_config.h \ |
|
timeout_heap.c \ |
|
timeout_heap.h \ |
|
memory_pool.c \ |
|
memory_pool.h \ |
|
sha256.c \ |
|
sha256.h \ |
|
socket_compat.c \ |
|
socket_compat.h \ |
|
platform_compat.c \ |
|
platform_compat.h \ |
|
mem.c \ |
|
mem.h |
|
|
|
libuasync_a_CFLAGS = \ |
|
-D_ISOC99_SOURCE \ |
|
-DDEBUG_OUTPUT_STDERR \ |
|
-I$(top_srcdir)/src \ |
|
-I$(top_srcdir)/lib |
|
|
|
# Clean build directory |
|
clean-local: |
|
-rm -rf $(top_builddir)/build
|
|
|