File: Makefile.am

package info (click to toggle)
libshout 2.4.6-1
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, forky, sid, trixie
  • size: 2,732 kB
  • sloc: ansic: 9,870; sh: 4,154; xml: 1,269; makefile: 150
file content (36 lines) | stat: -rw-r--r-- 776 bytes parent folder | download
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
30
31
32
33
34
35
36
## Process this file with automake to produce Makefile.in

AUTOMAKE_OPTIONS = 1.6 foreign
ACLOCAL_AMFLAGS = -I m4

SUBDIRS = include src doc win32
if HAVE_EXAMPLES
SUBDIRS += examples
endif
if HAVE_TOOLS
SUBDIRS += tools
endif

EXTRA_DIST = INSTALL m4/shout.m4 m4/acx_pthread.m4 \
	m4/ogg.m4 m4/vorbis.m4 m4/xiph_compiler.m4 m4/xiph_net.m4 \
	m4/xiph_types.m4 libshout.ckport

docdir = $(datadir)/doc/$(PACKAGE)
doc_DATA = COPYING NEWS README examples/example.c examples/nonblocking.c

m4datadir = $(datadir)/aclocal
m4data_DATA = m4/shout.m4

ckportdir = $(libdir)/ckport/db
ckport_DATA = libshout.ckport

if HAVE_PKGCONFIG
  pkgconfigdir = $(libdir)/pkgconfig
  pkgconfig_DATA = shout.pc
endif

debug:
	$(MAKE) all CFLAGS="@DEBUG@"

profile:
	$(MAKE) all CFLAGS="@PROFILE@"