blob: d2d8ad4d6082178d5087b54841fa0ecd20b953a4 (
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
|
pkgconfigdir = $(datadir)/pkgconfig
pkgconfig_DATA = libhello.pc
lib_LTLIBRARIES = libhello.la
libhello_la_SOURCES = hello.c hello.h
libhello_la_CFLAGS = -g -O2 -Wall -Wextra -Werror
include_HEADERS = hello.h
EXTRA_DIST = libhello.pc.in libhello-uninstalled.pc.in
# 1) If the library source code has changed at all since the last update, then
# increment revision ("c:r:a" becomes "c:r+1:a").
# 2) If any interfaces have been added, removed, or changed since the last
# update, increment current, and set revision to 0.
# 3) If any interfaces have been added since the last public release,
# then increment age.
# 4) If any interfaces have been removed or changed since the last public
# release, then set age to 0.
libhello_la_LDFLAGS = -version-info 0:0:0
maintainer-clean-local:
rm -rf m4/
DISTCLEANFILES = *~
MAINTAINERCLEANFILES = ChangeLog INSTALL Makefile.in aclocal.m4 \
compile config.guess config.h.in config.rpath config.sub configure \
depcomp install-sh ltmain.sh m4/ missing po/Makefile.in.in
ACLOCAL_AMFLAGS = -I m4
|