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 \
|
|
|
|
include/igloo/ro.h
|
2018-10-26 07:59:15 -04:00
|
|
|
|
2018-10-31 08:47:07 -04:00
|
|
|
libigloo_la_SOURCES = \
|
|
|
|
src/libigloo.c \
|
|
|
|
src/ro.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"
|