aboutsummaryrefslogtreecommitdiff
path: root/libid3tag/Makefile.am
blob: 21da890ee774011132cf420bd1e3357376f1b956 (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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
##
## libid3tag - ID3 tag manipulation library
## Copyright (C) 2000-2004 Underbit Technologies, Inc.
##
## This program is free software; you can redistribute it and/or modify
## it under the terms of the GNU General Public License as published by
## the Free Software Foundation; either version 2 of the License, or
## (at your option) any later version.
##
## This program is distributed in the hope that it will be useful,
## but WITHOUT ANY WARRANTY; without even the implied warranty of
## MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
## GNU General Public License for more details.
##
## You should have received a copy of the GNU General Public License
## along with this program; if not, write to the Free Software
## Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
##
## $Id: Makefile.am,v 1.26 2004/02/17 02:11:28 rob Exp $
##

## Process this file with automake to produce Makefile.in

ACLOCAL_AMFLAGS = -I m4
SUBDIRS =		

noinst_LIBRARIES =	libid3tag.a
noinst_HEADERS =	id3tag.h

EXTRA_DIST =		genre.dat.sed  \
			CHANGES COPYRIGHT CREDITS README TODO VERSION

if DEBUG
debug = debug.c debug.h
else
debug =
endif

libid3tag_a_SOURCES =	version.c ucs4.c latin1.c utf16.c utf8.c  \
			parse.c render.c field.c frametype.c compat.c  \
			genre.c frame.c crc.c util.c tag.c file.c  \
			version.h ucs4.h latin1.h utf16.h utf8.h  \
			parse.h render.h field.h frametype.h compat.h  \
			genre.h frame.h crc.h util.h tag.h file.h  \
			id3tag.h global.h genre.dat $(debug)

EXTRA_libid3tag_a_SOURCES =  \
			frametype.gperf compat.gperf genre.dat.in  \
			debug.c debug.h

BUILT_SOURCES =		frametype.c compat.c genre.dat

$(srcdir)/frametype.c: $(srcdir)/frametype.gperf Makefile.am
	$(AM_V_GEN)cd $(srcdir) &&  \
	gperf -tCcTonD -K id -N id3_frametype_lookup -s -3 -k '*'  \
		frametype.gperf |  \
	sed -e 's/\(struct id3_frametype\);/\1/' |  \
	sed -e '/\$$''Id: /s/\$$//g' >frametype.c

$(srcdir)/compat.c: $(srcdir)/compat.gperf Makefile.am
	$(AM_V_GEN)cd $(srcdir) &&  \
	gperf -tCcTonD -K id -N id3_compat_lookup -s -3 -k '*'  \
		compat.gperf |  \
	sed -e 's/\(struct id3_compat\);/\1/' |  \
	sed -e '/\$$''Id: /s/\$$//g' >compat.c

$(srcdir)/genre.dat: $(srcdir)/genre.dat.in $(srcdir)/genre.dat.sed Makefile.am
	$(AM_V_GEN)cd $(srcdir) &&  \
	sed -n -f genre.dat.sed genre.dat.in |  \
	sed -e '/\$$''Id: /s/\$$//g' >genre.dat

libtool: $(LIBTOOL_DEPS)
	$(AM_V_GEN)$(SHELL) ./config.status --recheck

again:
	$(MAKE) clean
	$(MAKE)

.PHONY: again

Return to:

Send suggestions and report system problems to the System administrator.