~ecryptfs/ecryptfs/trunk

« back to all changes in this revision

Viewing changes to src/libecryptfs/Makefile.am

  • Committer: mhalcrow@us.ibm.com
  • Date: 2007-11-06 22:56:01 UTC
  • Revision ID: git-v1:f8357de9d554b274497b5cce9db4347254b7e7eb
Initial import of eCryptfs filesystem userspace utilities (mount helper, daemon component,
etc.)

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
lib_LTLIBRARIES = libecryptfs.la
 
2
pkgconfig_DATA=libecryptfs.pc
 
3
 
 
4
libecryptfs_la_SOURCES = \
 
5
        main.c \
 
6
        cipher_list.c \
 
7
        netlink.c \
 
8
        netlink_packets.c \
 
9
        sysfs.c \
 
10
        key_management.c \
 
11
        decision_graph.c \
 
12
        cmd_ln_parser.c \
 
13
        module_mgr.c \
 
14
        key_mod.c \
 
15
        $(top_srcdir)/src/key_mod/ecryptfs_key_mod_passphrase.c
 
16
libecryptfs_la_LDFLAGS = \
 
17
        -version-info @LIBECRYPTFS_LT_CURRENT@:@LIBECRYPTFS_LT_REVISION@:@LIBECRYPTFS_LT_AGE@ \
 
18
        -no-undefined
 
19
libecryptfs_la_CFLAGS = $(AM_CFLAGS) $(LIBGCRYPT_CFLAGS) $(KEYUTILS_CFLAGS)
 
20
libecryptfs_la_LIBADD = $(LIBGCRYPT_LIBS) $(KEYUTILS_LIBS)
 
21
 
 
22
splint:
 
23
        splint -warnposix -preproc -unrecog -predboolint -boolops +matchanyintegral *.c