1
0
mirror of https://gitlab.xiph.org/xiph/icecast-common.git synced 2024-09-22 04:15:55 -04:00
icecast-common/Makefile.am

24 lines
486 B
Makefile
Raw Normal View History

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 07:59:15 -04:00
pkginclude_HEADERS = include/igloo.h
2018-10-12 05:25:16 -04:00
libigloo_la_SOURCES = libigloo.c
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
static:
$(MAKE) all LDFLAGS="${LDFLAGS} -all-static"