blob: 8ec54613cf231a076cbc6c4c0c2b26b552ac95b1 (
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
28
29
|
#
# Makefile.am
#
# Author: Juan A. Suarez Romero <jasuarez@igalia.com>
#
# Copyright (C) 2010, 2011 Igalia S.L. All rights reserved.
include $(top_srcdir)/gtester.mk
ext_LTLIBRARIES = libgrlshoutcast.la
libgrlshoutcast_la_CFLAGS = \
$(DEPS_SHOUTCAST_CFLAGS) \
-DG_LOG_DOMAIN=\"GrlShoutcast\" \
-DLOCALEDIR=\"$(localedir)\"
libgrlshoutcast_la_LIBADD = \
$(DEPS_SHOUTCAST_LIBS)
libgrlshoutcast_la_LDFLAGS = \
-no-undefined \
-module \
-avoid-version
libgrlshoutcast_la_SOURCES = grl-shoutcast.c grl-shoutcast.h
extdir = $(GRL_PLUGINS_DIR)
-include $(top_srcdir)/git.mk
|