File: Makefile.am

package info (click to toggle)
libmcrypt 2.5.8-8
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 7,060 kB
  • sloc: ansic: 15,868; sh: 8,579; makefile: 196
file content (27 lines) | stat: -rw-r--r-- 1,173 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
## Process this file with automake to produce Makefile.in
DEFS = @DEFS@ 
AM_CPPFLAGS = -I. -I../.. $(INCLTDL) -I../../lib

EXTRA_DIST = ofb.h cfb.h nofb.h cbc.h ecb.h stream.h ncfb.h ctr.h
pkglib_LTLIBRARIES = @INSTALL_MODE_MODULES@

EXTRA_LTLIBRARIES = ofb.la cfb.la nofb.la cbc.la ecb.la stream.la ncfb.la \
	ctr.la
noinst_LTLIBRARIES = @NOINSTALL_MODE_MODULES@

ofb_la_SOURCES = ofb.c
ofb_la_LDFLAGS =  -module -avoid-version -no-undefined -rpath $(pkglibdir)
ctr_la_SOURCES = ctr.c
ctr_la_LDFLAGS =  -module -avoid-version -no-undefined -rpath $(pkglibdir)
cfb_la_SOURCES = cfb.c
cfb_la_LDFLAGS =  -module -avoid-version -no-undefined -rpath $(pkglibdir) 
ncfb_la_SOURCES = ncfb.c
ncfb_la_LDFLAGS =  -module -avoid-version -no-undefined -rpath $(pkglibdir)  
nofb_la_SOURCES = nofb.c
nofb_la_LDFLAGS =  -module -avoid-version -no-undefined -rpath $(pkglibdir)  
ecb_la_SOURCES = ecb.c
ecb_la_LDFLAGS =  -module -avoid-version -no-undefined -rpath $(pkglibdir)  
cbc_la_SOURCES = cbc.c
cbc_la_LDFLAGS =  -module -avoid-version -no-undefined -rpath $(pkglibdir)  
stream_la_SOURCES = stream.c
stream_la_LDFLAGS =  -module -avoid-version -no-undefined -rpath $(pkglibdir)