blob: b6f5d74539e6bce681fc93ac80070bf1171f661c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
|
#
# Makefile.am for the Nice Glib ICE library
#
# (C) 2006, 2007 Collabora Ltd.
# (C) 2006, 2007 Nokia Corporation. All rights reserved.
#
# Licensed under MPL 1.1/LGPL 2.1. See file COPYING.
include $(top_srcdir)/common.mk
AM_CFLAGS = $(LIBNICE_CFLAGS) $(GLIB_CFLAGS)
noinst_LTLIBRARIES = libnice-random.la
libnice_random_la_SOURCES = \
random.h \
random.c \
random-glib.h \
random-glib.c
check_PROGRAMS = test
test_LDADD = libnice-random.la $(GLIB_LIBS)
TESTS = $(check_PROGRAMS)
EXTRA_DIST = meson.build
|