2018-10-11 09:04:44 -04:00
|
|
|
## Process this file with automake to produce Makefile.in
|
|
|
|
|
|
|
|
ACLOCAL_AMFLAGS = -I m4
|
|
|
|
|
|
|
|
SUBDIRS = avl httpp log net thread timing
|
|
|
|
|
2018-10-12 05:25:16 -04:00
|
|
|
lib_LTLIBRARIES = libigloo.la
|
2018-10-11 09:04:44 -04:00
|
|
|
|
2018-10-26 10:20:20 -04:00
|
|
|
pkginclude_HEADERS = \
|
2018-11-02 07:21:39 -04:00
|
|
|
include/igloo/config.h \
|
2018-10-26 10:20:20 -04:00
|
|
|
include/igloo/avl.h \
|
|
|
|
include/igloo/encoding.h \
|
|
|
|
include/igloo/httpp.h \
|
|
|
|
include/igloo/igloo.h \
|
|
|
|
include/igloo/log.h \
|
|
|
|
include/igloo/resolver.h \
|
|
|
|
include/igloo/sock.h \
|
|
|
|
include/igloo/thread.h \
|
2018-10-31 08:47:07 -04:00
|
|
|
include/igloo/timing.h \
|
2018-10-31 08:59:00 -04:00
|
|
|
include/igloo/ro.h \
|
2018-10-31 09:25:13 -04:00
|
|
|
include/igloo/types.h \
|
2018-11-02 11:45:40 -04:00
|
|
|
include/igloo/typedef.h \
|
2018-11-07 05:21:38 -05:00
|
|
|
include/igloo/buffer.h \
|
2018-11-09 08:32:32 -05:00
|
|
|
include/igloo/list.h \
|
|
|
|
include/igloo/reportxml.h
|
2018-10-26 07:59:15 -04:00
|
|
|
|
2018-10-31 08:47:07 -04:00
|
|
|
libigloo_la_SOURCES = \
|
|
|
|
src/libigloo.c \
|
2018-11-02 11:45:40 -04:00
|
|
|
src/ro.c \
|
2018-11-07 05:21:38 -05:00
|
|
|
src/buffer.c \
|
2018-11-09 08:32:32 -05:00
|
|
|
src/list.c \
|
|
|
|
src/reportxml.c
|
2018-10-12 05:25:16 -04:00
|
|
|
libigloo_la_LIBADD = \
|
2018-10-11 09:04:44 -04:00
|
|
|
avl/libiceavl.la \
|
|
|
|
httpp/libicehttpp.la \
|
|
|
|
log/libicelog.la \
|
|
|
|
net/libicenet.la \
|
|
|
|
thread/libicethread.la \
|
|
|
|
timing/libicetiming.la
|
|
|
|
|
2018-10-12 05:25:16 -04:00
|
|
|
pkgconfig_DATA = igloo.pc
|
2018-10-11 09:04:44 -04:00
|
|
|
|
2018-11-02 07:20:04 -04:00
|
|
|
AM_CFLAGS = -I$(top_srcdir)/include
|
|
|
|
|
2018-10-11 09:04:44 -04:00
|
|
|
static:
|
|
|
|
$(MAKE) all LDFLAGS="${LDFLAGS} -all-static"
|
2018-11-07 09:44:00 -05:00
|
|
|
|
|
|
|
include $(srcdir)/src/tests/Makefile.am
|