~ubuntu-branches/ubuntu/vivid/ecryptfs-utils/vivid

« back to all changes in this revision

Viewing changes to src/utils/Makefile.in

  • Committer: Bazaar Package Importer
  • Author(s): Dustin Kirkland
  • Date: 2008-08-04 15:58:24 UTC
  • mfrom: (1.1.11 upstream)
  • Revision ID: james.westby@ubuntu.com-20080804155824-c3ob82b8h6wpx2x6
Tags: 53-1ubuntu1
 * Merge from debian unstable (LP: #254714, #251245), remaining changes:
  - debian/rules: install ecryptfs auth-client-config profile
  - debian/control: Update maintainer, suggest auth-client-config
  - debian/ecryptfs.acc: define auth-client-config profile
  - debian/ecryptfs-utils.install: install auth-client-config profile
 * Dropped changes:
  - debian/ecryptfs-utils.dirs: handled by install -D rule
 * Additional changes
  - debian/ecryptfs.acc: Add to common-password stack, make all pam_ecryptfs
    entries optional (LP: #253816).

Show diffs side-by-side

added added

removed removed

Lines of Context:
42
42
        ecryptfs-insert-wrapped-passphrase-into-keyring$(EXEEXT) \
43
43
        ecryptfs-rewrap-passphrase$(EXEEXT) \
44
44
        ecryptfs-add-passphrase$(EXEEXT) ecryptfs-zombie-kill$(EXEEXT) \
45
 
        ecryptfs-zombie-list$(EXEEXT) $(am__EXEEXT_1)
 
45
        ecryptfs-zombie-list$(EXEEXT) ecryptfs-stat$(EXEEXT) \
 
46
        $(am__EXEEXT_1)
46
47
noinst_PROGRAMS = test$(EXEEXT)
47
48
@ENABLE_TESTS_TRUE@TESTS = test$(EXEEXT)
48
49
@BUILD_TSPI_TRUE@am__append_1 = ecryptfs-generate-tpm-key
99
100
        $(am_ecryptfs_rewrap_passphrase_OBJECTS)
100
101
ecryptfs_rewrap_passphrase_DEPENDENCIES =  \
101
102
        $(top_builddir)/src/libecryptfs/libecryptfs.la
 
103
am_ecryptfs_stat_OBJECTS = ecryptfs-stat.$(OBJEXT)
 
104
ecryptfs_stat_OBJECTS = $(am_ecryptfs_stat_OBJECTS)
 
105
ecryptfs_stat_DEPENDENCIES =  \
 
106
        $(top_builddir)/src/libecryptfs/libecryptfs.la
102
107
am_ecryptfs_unwrap_passphrase_OBJECTS =  \
103
108
        ecryptfs_unwrap_passphrase.$(OBJEXT)
104
109
ecryptfs_unwrap_passphrase_OBJECTS =  \
153
158
        $(ecryptfs_generate_tpm_key_SOURCES) \
154
159
        $(ecryptfs_insert_wrapped_passphrase_into_keyring_SOURCES) \
155
160
        $(ecryptfs_manager_SOURCES) \
156
 
        $(ecryptfs_rewrap_passphrase_SOURCES) \
 
161
        $(ecryptfs_rewrap_passphrase_SOURCES) $(ecryptfs_stat_SOURCES) \
157
162
        $(ecryptfs_unwrap_passphrase_SOURCES) \
158
163
        $(ecryptfs_wrap_passphrase_SOURCES) \
159
164
        $(ecryptfs_zombie_kill_SOURCES) \
163
168
        $(ecryptfs_generate_tpm_key_SOURCES) \
164
169
        $(ecryptfs_insert_wrapped_passphrase_into_keyring_SOURCES) \
165
170
        $(ecryptfs_manager_SOURCES) \
166
 
        $(ecryptfs_rewrap_passphrase_SOURCES) \
 
171
        $(ecryptfs_rewrap_passphrase_SOURCES) $(ecryptfs_stat_SOURCES) \
167
172
        $(ecryptfs_unwrap_passphrase_SOURCES) \
168
173
        $(ecryptfs_wrap_passphrase_SOURCES) \
169
174
        $(ecryptfs_zombie_kill_SOURCES) \
315
320
top_builddir = @top_builddir@
316
321
top_srcdir = @top_srcdir@
317
322
MAINTAINERCLEANFILES = $(srcdir)/Makefile.in
318
 
EXTRA_DIST = ecryptfsrc ecryptfs-setup-confidential ecryptfs-mount-confidential ecryptfs-umount-confidential
319
 
bin_SCRIPTS = ecryptfs-setup-confidential \
320
 
              ecryptfs-mount-confidential \
321
 
              ecryptfs-umount-confidential
 
323
EXTRA_DIST = ecryptfsrc ecryptfs-setup-private ecryptfs-mount-private ecryptfs-umount-private
 
324
bin_SCRIPTS = ecryptfs-setup-private \
 
325
              ecryptfs-mount-private \
 
326
              ecryptfs-umount-private
322
327
 
323
328
INCLUDES = -I$(top_srcdir)/src/include
324
329
mount_ecryptfs_SOURCES = mount.ecryptfs.c io.c io.h gen_key.c plaintext_decision_graph.c
346
351
ecryptfs_generate_tpm_key_LDADD = $(TSPI_LIBS)
347
352
mount_ecryptfs_private_SOURCES = mount.ecryptfs_private.c
348
353
mount_ecryptfs_private_LDADD = $(KEYUTILS_LIBS)
 
354
ecryptfs_stat_SOURCES = ecryptfs-stat.c
 
355
ecryptfs_stat_LDADD = $(top_builddir)/src/libecryptfs/libecryptfs.la
349
356
test_SOURCES = test.c io.c
350
357
test_LDADD = $(top_builddir)/src/libecryptfs/libecryptfs.la
351
358
all: all-am
459
466
ecryptfs-rewrap-passphrase$(EXEEXT): $(ecryptfs_rewrap_passphrase_OBJECTS) $(ecryptfs_rewrap_passphrase_DEPENDENCIES) 
460
467
        @rm -f ecryptfs-rewrap-passphrase$(EXEEXT)
461
468
        $(LINK) $(ecryptfs_rewrap_passphrase_OBJECTS) $(ecryptfs_rewrap_passphrase_LDADD) $(LIBS)
 
469
ecryptfs-stat$(EXEEXT): $(ecryptfs_stat_OBJECTS) $(ecryptfs_stat_DEPENDENCIES) 
 
470
        @rm -f ecryptfs-stat$(EXEEXT)
 
471
        $(LINK) $(ecryptfs_stat_OBJECTS) $(ecryptfs_stat_LDADD) $(LIBS)
462
472
ecryptfs-unwrap-passphrase$(EXEEXT): $(ecryptfs_unwrap_passphrase_OBJECTS) $(ecryptfs_unwrap_passphrase_DEPENDENCIES) 
463
473
        @rm -f ecryptfs-unwrap-passphrase$(EXEEXT)
464
474
        $(LINK) $(ecryptfs_unwrap_passphrase_OBJECTS) $(ecryptfs_unwrap_passphrase_LDADD) $(LIBS)
506
516
distclean-compile:
507
517
        -rm -f *.tab.c
508
518
 
 
519
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/ecryptfs-stat.Po@am__quote@
509
520
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/ecryptfs_add_passphrase.Po@am__quote@
510
521
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/ecryptfs_generate_tpm_key-ecryptfs_generate_tpm_key.Po@am__quote@
511
522
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/ecryptfs_insert_wrapped_passphrase_into_keyring.Po@am__quote@
927
938
 
928
939
 
929
940
install-exec-hook:      install-rootsbinPROGRAMS
930
 
        $(LN_S) -f "mount.ecryptfs_private" "$(DESTDIR)/$(rootsbindir)/umount.ecryptfs_private"
 
941
        -rm -f "$(DESTDIR)/$(rootsbindir)/umount.ecryptfs_private"
 
942
        $(LN_S) "mount.ecryptfs_private" "$(DESTDIR)/$(rootsbindir)/umount.ecryptfs_private"
931
943
# Tell versions [3.59,3.63) of GNU make to not export all variables.
932
944
# Otherwise a system limit (for SysV at least) may be exceeded.
933
945
.NOEXPORT: