-
Notifications
You must be signed in to change notification settings - Fork 0
/
Makefile.am
66 lines (53 loc) · 1.84 KB
/
Makefile.am
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
#
# Copyright (c) 2005-2007 Alon Bar-Lev <[email protected]>
# All rights reserved.
#
# This program is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License version 2
# as published by the Free Software Foundation.
#
# 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 (see the file COPYING.GPL included with this
# distribution); if not, write to the Free Software Foundation, Inc.,
# 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
#
# This option prevents autoreconf from overriding our COPYING and
# INSTALL targets:
AUTOMAKE_OPTIONS=foreign dist-bzip2
MAINTAINERCLEANFILES = \
config.log config.status \
$(srcdir)/Makefile.in \
$(srcdir)/config.h.in $(srcdir)/config.h.in~ $(srcdir)/configure \
$(srcdir)/install-sh $(srcdir)/ltmain.sh $(srcdir)/missing \
$(srcdir)/depcomp $(srcdir)/aclocal.m4 \
$(srcdir)/config.guess $(srcdir)/config.sub \
$(srcdir)/mp3unicode.spec
BUILT_SOURCES=ChangeLog
DISTCLEANFILES=ChangeLog
EXTRA_DIST=ChangeLog ChangeLog.xsl releases.xml
ChangeLog: ChangeLog.xsl releases.xml
$(XSLTPROC) -o ChangeLog "$(srcdir)/ChangeLog.xsl" "$(srcdir)/releases.xml"
dist_doc_DATA=README COPYING
SUBDIRS= \
distro
bin_PROGRAMS= \
mp3unicode
mp3unicode_SOURCES= \
mp3unicode.cpp messages.cpp messages.h
dist-hook:
$(LN_S) "$(srcdir)/distro/rpm/mp3unicode.spec" "$(distdir)/mp3unicode.spec"
clean-generic:
-rm -f *.html
if WIN32
nodist_html_DATA=mp3unicode.html
dist_noinst_DATA=mp3unicode.1
mp3unicode.1.html:
$(MAN2HTML) < "$(srcdir)/mp3unicode.1" > $@
else
dist_man_MANS=mp3unicode.1
endif