-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathMakefile.am
43 lines (33 loc) · 889 Bytes
/
Makefile.am
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
43
AM_LDFLAGS = -lm -lgmp -lmpfr -lmpfi -lwcpg $(LAPACK_LIBS) $(BLAS_LIBS)
bin_PROGRAMS = fxpf_test
fxpf_test_SOURCES = fxpf_test.c \
fxpf.c \
fxpf.h \
filter.h\
filter.c\
LPconstructor.c\
LPconstructor.h\
matrixalg.c\
matrixalg.h\
mpfi_matrixalg.c\
mpfi_matrixalg.h
lib_LTLIBRARIES = libfxpf.la
libfxpf_la_SOURCES = fxpf.c \
fxpf.h \
filter.h\
filter.c\
LPconstructor.c\
LPconstructor.h\
matrixalg.c\
matrixalg.h\
mpfi_matrixalg.c\
mpfi_matrixalg.h
include_HEADERS = fxpf.h filter.h matrixalg.h mpfi_matrixalg.h
fxpf_test_CFLAGS = $(AM_CFLAGS)
fxpf_test_CPPFLAGS = $(AM_CPPFLAGS)
fxpf_test_LDFLAGS = $(AM_LDFLAGS)
libfxpf_la_LDFLAGS = -version-info 0:9:0 $(AM_LDFLAGS)
ACLOCAL_AMFLAGS = -I m4
LIBTOOL_DEPS = @LIBTOOL_DEPS@
libtool: $(LIBTOOL_DEPS)
$(SHELL) ./config.status libtool