summaryrefslogtreecommitdiffstats
path: root/lib/Makefile.am
blob: 252bd00479b9e9a4e159c3408bf30e6ed5fb6c77 (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
#
#  Copyright 2007 Sony Corp.
#
#  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; version 2 of the License.
#
#  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
#

ACLOCAL_AMFLAGS = -I m4

AM_CPPFLAGS = $(DEFAULT_CPPFLAGS)
AM_CFLAGS = $(DEFAULT_CFLAGS)

LIBTOOL_DEPS = @LIBTOOL_DEPS@

libtool: $(LIBTOOL_DEPS)
	$(SHELL) ./config.status libtool

include_HEADERS = ps3-flash.h ps3-av.h

lib_LTLIBRARIES = libps3-utils.la

# version-info rules (current:revision:age):
# * If the library source code has changed since the last release, then
#   increment revision.
# * If any interfaces have been added, removed, or changed since the
#   last release, then increment current and set revision to 0.
# * If any interfaces have been added since the last release, then
#   increment age.
# * If any interfaces have been removed since the last release, then
#   set age to 0.

libps3_utils_la_DEPENDENCIES = Makefile
libps3_utils_la_SOURCES = flash.c flash-db.c
libps3_utils_la_LDFLAGS = -version-info 3:0:1 ${EXTRA_LDFLAGS}

EXTRA_DIST = bootstrap configure.ac.in  $(srcdir)/m4

MAINTAINERCLEANFILES = config.* configure configure.ac Makefile.in

maintainer-clean-local:
	rm -rf m4