File: Makefile.am

package info (click to toggle)
tcpcrypt 0.3~rc1-3
  • links: PTS, VCS
  • area: main
  • in suites: jessie, jessie-kfreebsd
  • size: 1,292 kB
  • ctags: 1,285
  • sloc: ansic: 11,305; asm: 482; sh: 192; objc: 149; makefile: 98
file content (21 lines) | stat: -rw-r--r-- 590 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
lib_LTLIBRARIES = libtcpcrypt.la
libtcpcrypt_ladir = $(includedir)/tcpcrypt
libtcpcrypt_la_HEADERS = $(top_srcdir)/include/tcpcrypt/tcpcrypt.h
libtcpcrypt_la_SOURCES = \
	sockopt.c \
	$(top_srcdir)/src/tcpcrypt_ctl.h \
	$(top_srcdir)/shared/socket_address.h \
	$(top_srcdir)/shared/socket_address.c \
	libtcpcrypt.sym

libtcpcrypt_la_CFLAGS  = \
	-I$(top_srcdir)/include/ \
	-I$(top_srcdir)/ \
	-export-symbols $(srcdir)/libtcpcrypt.sym

TCPCRYPT_LIBRARY_VERSION = 0:0:0
libtcpcrypt_la_LDFLAGS = -version-info $(TCPCRYPT_LIBRARY_VERSION)

if OS_MINGW
libtcpcrypt_la_LIBADD = -lws2_32
endif