"Fossies" - the Fresh Open Source Software Archive 
Member "harminv-1.4.2/Makefile.am" (20 Jul 2017, 949 Bytes) of package /linux/privat/harminv-1.4.2.tar.gz:
As a special service "Fossies" has tried to format the requested text file into HTML format (style:
standard) with prefixed line numbers.
Alternatively you can here
view or
download the uninterpreted source code file.
See also the last
Fossies "Diffs" side-by-side code changes report for "Makefile.am":
1.4_vs_1.4.1.
1 bin_PROGRAMS = harminv
2 lib_LTLIBRARIES = libharminv.la
3 include_HEADERS = harminv.h
4 dist_man_MANS = doc/harminv.1
5 noinst_PROGRAMS = sines
6
7 pkgconfigdir = $(libdir)/pkgconfig
8 pkgconfig_DATA = harminv.pc
9
10 ACLOCAL_AMFLAGS=-I m4
11
12 DOCS = README.md NEWS.md doc/Harminv.gif doc/harminv-man.md doc/installation.md doc/library.md
13
14 EXTRA_DIST = $(DOCS) COPYRIGHT harminv.pc.in m4 sines-test.sh
15
16 libharminv_la_SOURCES = harminv.c harminv.h harminv-int.h check.h
17 libharminv_la_LDFLAGS = -version-info @SHARED_VERSION_INFO@
18
19 harminv_SOURCES = harminv-main.c copyright.h
20 harminv_LDADD = libharminv.la
21
22 sines_SOURCES = sines.c
23
24 BUILT_SOURCES = copyright.h
25
26 TESTS = sines-test.sh
27
28 # Generate built sources only in maintainer mode
29 if MAINTAINER_MODE
30
31 copyright.h: COPYRIGHT
32 (echo '#define COPYRIGHT \'; sed 's,^/\* *,",;s,^ \* *,",;s,$$,\\n" \\,' COPYRIGHT |egrep -v '^"/|^[^"]'; echo) > $@
33
34 maintainer-clean-local:
35 rm -f $(BUILT_SOURCES)
36
37 endif # MAINTAINER_MODE