File: Makefile.am

package info (click to toggle)
libmatio 1.3.4-4
  • links: PTS, VCS
  • area: main
  • in suites: wheezy
  • size: 2,852 kB
  • sloc: ansic: 16,745; sh: 9,759; f90: 2,873; makefile: 104
file content (42 lines) | stat: -rw-r--r-- 786 bytes parent folder | download | duplicates (2)
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
41
42
# automake file for scats

AUTOMAKE_OPTIONS = foreign 1.8 no-dependencies
VPATH = @srcdir@

ACLOCAL_AMFLAGS = -I config/

datadir = $(prefix)/share/matio
EXTRA_DIST = matio.pc.in bootstrap patches/inflate.patch \
             share/test_file.mat share/test_file_v6.mat

pkgconfigdir = $(libdir)/pkgconfig
pkgconfig_DATA = matio.pc
$(pkgconfig_DATA): config.status


if DOCS_INSTALL
DOCS=doxygen
endif

if BUILD_TEST
data_DATA  = share/test_file.mat share/test_file_v6.mat
TEST=test
endif

SUBDIRS = src $(TEST) $(DOCS)

dosubst = sed -e 's,[@]PACKAGE[@],$(PACKAGE),g' \
              -e 's,[@]VERSION[@],$(VERSION),g' \
              -e 's,\/,\\,g'

doc:
	

print:
	subdirs='$(SUBDIRS)'; \
	here=`pwd`;\
	for f in $$subdirs; do \
	    cd $$f; \
	    make print;\
	    cd $$here;\
	done