File: Makefile.am

package info (click to toggle)
amanda 1%3A3.5.1-2
  • links: PTS, VCS
  • area: main
  • in suites: buster
  • size: 30,596 kB
  • sloc: ansic: 265,630; perl: 114,246; xml: 16,058; sh: 8,667; makefile: 2,794; awk: 502; lex: 407; yacc: 347; tcl: 118; sql: 19; sed: 16; php: 2
file content (40 lines) | stat: -rw-r--r-- 998 bytes parent folder | download | duplicates (4)
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
# Makefile for Amanda archive library

include $(top_srcdir)/config/automake/vars.am
include $(top_srcdir)/config/automake/installperms.am
include $(top_srcdir)/config/automake/precompile.am

AM_CPPFLAGS =   -I$(top_builddir)/common-src \
                -I$(top_srcdir)/common-src \
                -I$(top_srcdir)/gnulib

AM_CFLAGS = $(AMANDA_WARNING_CFLAGS) $(AMANDA_FILE_CFLAGS)
AM_LDFLAGS = $(AMANDA_STATIC_LDFLAGS) $(AS_NEEDED_FLAGS)

LINT=@AMLINT@
LINTFLAGS=@AMLINTFLAGS@

amlib_LTLIBRARIES =     libamar.la

libamar_la_SOURCES = amar.c
libamar_la_LDFLAGS =  -release $(VERSION) $(AS_NEEDED_FLAGS)
libamar_la_LIBADD = ../common-src/libamanda.la

noinst_HEADERS = \
	amar.h

sbin_PROGRAMS = amarchiver

amarchiver_SOURCES = amarchiver.c
amarchiver_LDADD = libamar.la \
	../common-src/libamanda.la

# automake-style tests

TESTS = amar-test
noinst_PROGRAMS = $(TESTS)

amar_test_SOURCES = amar-test.c
amar_test_LDADD = libamar.la \
	../common-src/libtestutils.la \
	../common-src/libamanda.la