File: Makefile.am

package info (click to toggle)
paflib 0.3.0-1
  • links: PTS
  • area: main
  • in suites: bookworm, bullseye, buster, forky, sid, stretch, trixie
  • size: 2,448 kB
  • ctags: 725
  • sloc: sh: 4,503; ansic: 2,320; asm: 837; makefile: 148
file content (25 lines) | stat: -rw-r--r-- 751 bytes parent folder | download
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
AM_CFLAGS = -Wall -Werror
AM_LDFLAGS = -rdynamic
AM_CPPFLAGS = -I$(top_srcdir)/common -I$(top_srcdir)/dsc

nobase_include_HEADERS = paf/dsc.h
INTERNAL_INCLUDES = hwcap.h

lib_LTLIBRARIES = libpaf-dsc.la
libpaf_dsc_la_SOURCES = init.c \
                        dsc.c \
                        hwcap.c \
                        dsc-version.c \
                        $(include_HEADERS) \
                        $(INTERNAL_INCLUDES)
libpaf_dsc_la_CFLAGS = -Wl,-entry=__paflib_dsc_main
libpaf_dsc_la_LIBADD = $(LIBAUXV) ../common/libpaf-common.la
libpaf_dsc_la_LDFLAGS = -version-info $(LIBPAF_SO_VERSION)

dist_man3_MANS = doc/libpaf-dsc.3

TESTS = test_dsc
test_dsc_SOURCES = tests/test_dsc.c
test_dsc_LDADD = libpaf-dsc.la

check_PROGRAMS = $(TESTS)