Makefile.am 387 Bytes
Newer Older
lucasb-eyer's avatar
lucasb-eyer committed
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
# $Id$

EXTRA_DIST = \
	lib.vcxproj

liblbfgsincludedir = $(includedir)
liblbfgsinclude_HEADERS = \
	../include/lbfgs.h

lib_LTLIBRARIES = liblbfgs.la

liblbfgs_la_SOURCES = \
	arithmetic_ansi.h \
	arithmetic_sse_double.h \
	arithmetic_sse_float.h \
	../include/lbfgs.h \
	lbfgs.c

liblbfgs_la_LDFLAGS = \
	-no-undefined \
	-release @VERSION@

AM_CFLAGS = @CFLAGS@
INCLUDES = @INCLUDES@