1
0
mirror of https://gitlab.xiph.org/xiph/icecast-common.git synced 2024-06-30 06:35:23 +00:00
icecast-common/Makefile.am

24 lines
490 B
Makefile
Raw Normal View History

2018-10-11 13:04:44 +00:00
## Process this file with automake to produce Makefile.in
ACLOCAL_AMFLAGS = -I m4
SUBDIRS = avl httpp log net thread timing
2018-10-12 09:25:16 +00:00
lib_LTLIBRARIES = libigloo.la
2018-10-11 13:04:44 +00:00
2018-10-26 11:59:15 +00:00
pkginclude_HEADERS = include/igloo.h
libigloo_la_SOURCES = src/libigloo.c
2018-10-12 09:25:16 +00:00
libigloo_la_LIBADD = \
2018-10-11 13:04:44 +00:00
avl/libiceavl.la \
httpp/libicehttpp.la \
log/libicelog.la \
net/libicenet.la \
thread/libicethread.la \
timing/libicetiming.la
2018-10-12 09:25:16 +00:00
pkgconfig_DATA = igloo.pc
2018-10-11 13:04:44 +00:00
static:
$(MAKE) all LDFLAGS="${LDFLAGS} -all-static"