File: Makefile.am

package info (click to toggle)
libhbaapi 2.2.9-5
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 340 kB
  • sloc: ansic: 3,644; makefile: 28; sh: 4
file content (24 lines) | stat: -rw-r--r-- 609 bytes parent folder | download | duplicates (5)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
lib_LTLIBRARIES = libHBAAPI.la
libHBAAPI_la_SOURCES = hbaapi.h vendorhbaapi.h
nodist_libHBAAPI_la_SOURCES = hbaapilib.c
libHBAAPI_la_LDFLAGS = -version-info 2:2:0

nobase_include_HEADERS = hbaapi.h vendorhbaapi.h

pkgconfigdir = $(libdir)/pkgconfig
pkgconfig_DATA = HBAAPI.pc

dist_sysconf_DATA = hba.conf
dist_noinst_DATA = HBAAPI.pc.in libHBAAPI.spec

clean-local:
	-if [ ${abs_srcdir} != ${abs_builddir} ]; then \
		rm -f hba.conf; \
	fi

# re-write hba.conf to edit out everything except for comments and blank lines
FORCE:
hba.conf: FORCE
	grep "^#\|^[[:space:]]*$$" ${srcdir}/$@ > $@.tmp
	mv $@.tmp $@