| # |
| # Copyright 2007 Sony Corp. |
| # |
| |
| AUTOMAKE_OPTIONS = foreign |
| |
| 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 version.sh $(srcdir)/m4 |
| |
| MAINTAINERCLEANFILES = aclocal.m4 compile config.* configure depcomp \ |
| install-sh ltmain.sh m4/*.m4 Makefile.in missing |