|
|
|
@ -1,10 +1,17 @@ |
|
|
|
ACLOCAL_AMFLAGS = -I m4 |
|
|
|
AUTOMAKE_OPTIONS = subdir-objects |
|
|
|
|
|
|
|
AM_CFLAGS += -I../../include/ -std=c99 -DREENTRANT -lpthread |
|
|
|
AM_LDFLAGS += -lpthread |
|
|
|
AM_CFLAGS += -I../../include/ -std=c99 |
|
|
|
AM_LDFLAGS += |
|
|
|
|
|
|
|
QUEUE = queue.c get.c put.c put_first.c find.c find_parent.c delete.c destroy.c |
|
|
|
QUEUE = queue.c \
|
|
|
|
get.c \
|
|
|
|
put.c \
|
|
|
|
put_first.c \
|
|
|
|
find.c \
|
|
|
|
find_parent.c \
|
|
|
|
delete.c \
|
|
|
|
destroy.c |
|
|
|
|
|
|
|
noinst_LTLIBRARIES = libqueue.la |
|
|
|
|
|
|
|
|