~x2go/x2go/pinentry-x2go_master

« back to all changes in this revision

Viewing changes to Makefile.am

  • Committer: Mike Gabriel
  • Date: 2012-06-13 12:55:37 UTC
  • Revision ID: git-v1:d2060291d5cc7beb92f78168e48ececfe765d552
Strip code project down to its essentials, remove a lot of unneeded cruft. / Make code tree fully build with autotools, see README file for further info.

Show diffs side-by-side

added added

removed removed

Lines of Context:
21
21
 
22
22
ACLOCAL_AMFLAGS = -I m4
23
23
 
24
 
EXTRA_DIST = autogen.sh README.SVN Manifest
25
 
 
26
 
if BUILD_PINENTRY_CURSES
27
 
pinentry_curses = curses
28
 
else
29
 
pinentry_curses = 
30
 
endif
31
 
 
32
 
if BUILD_PINENTRY_GTK
33
 
pinentry_gtk = gtk
34
 
else
35
 
pinentry_gtk = 
36
 
endif
37
 
 
38
 
if BUILD_PINENTRY_GTK_2
39
 
pinentry_gtk_2 = gtk+-2
40
 
else
41
 
pinentry_gtk_2 = 
42
 
endif
43
 
 
44
 
if BUILD_PINENTRY_QT
45
 
pinentry_qt = qt
46
 
else
47
 
pinentry_qt = 
48
 
endif
49
 
 
50
 
if BUILD_PINENTRY_W32
51
 
pinentry_w32 = w32
52
 
else
53
 
pinentry_w32 = 
54
 
endif
55
 
 
56
 
SUBDIRS = assuan secmem pinentry ${pinentry_curses} \
57
 
        ${pinentry_gtk} ${pinentry_gtk_2} ${pinentry_qt} ${pinentry_w32} doc
58
 
 
 
24
EXTRA_DIST = 
 
25
 
 
26
SUBDIRS = assuan secmem pinentry pinentry-x2go
59
27
 
60
28
install-exec-local:
61
29
        @list='$(bin_PROGRAMS)'; for p in $$list; do \
63
31
          $(SETCAP) cap_ipc_lock+p $(DESTDIR)$(bindir)/`echo $$p|sed 's/$(EXEEXT)$$//'|sed '$(transform)'|sed 's/$$/$(EXEEXT)/'` || true; \
64
32
        done
65
33
 
66
 
        (cd $(DESTDIR)$(bindir); \
67
 
        rm -f pinentry; \
68
 
        $(LN_S) $(PINENTRY_DEFAULT)$(EXEEXT) pinentry)