source: trunk/third/gaim-encryption/Makefile.am @ 22512

Revision 22512, 2.3 KB checked in by ghudson, 19 years ago (diff)
This commit was generated by cvs2svn to compensate for changes in r22511, which included commits to RCS files with non-trunk default branches.
  • Property svn:executable set to *
Line 
1AUTOMAKE_OPTIONS = foreign
2
3encryptdir = $(libdir)/gaim
4
5encrypt_la_LDFLAGS = -module -avoid-version
6
7encrypt_la_LIBADD = $(NSS_LIBS)
8
9encrypt_LTLIBRARIES = encrypt.la
10noinst_LIBRARIES =
11
12
13EXTRA_DIST      = \
14        Makefile.mingw \
15        po/Makefile.mingw \
16        COPYING      \
17        CHANGELOG    \
18        INSTALL      \
19        NOTES        \
20        README       \
21        VERSION      \
22        WISHLIST     \
23        gaim-encryption-installer.nsi \
24        nsis/header.bmp  \
25        nsis/install.ico \
26        $(wildcard nsis/translations/*.nsh)
27
28encrypt_la_SOURCES = \
29        nls.h                    \
30        ge_blist.c               \
31        ge_blist.h               \
32        config_ui.c              \
33        config_ui.h              \
34        cryptproto.c             \
35        cryptproto.h             \
36        cryptutil.c              \
37        cryptutil.h              \
38        encrypt.c                \
39        encrypt.h                \
40        gpg.c                    \
41        gpg.h                    \
42        icon_capable.xpm         \
43        icon_in_lock.xpm         \
44        icon_in_unlock.xpm       \
45        icon_lock.xpm            \
46        icon_out_capable.xpm     \
47        icon_out_lock.xpm        \
48        icon_out_unlock.xpm      \
49        icon_unlock.xpm          \
50        keys.c                   \
51        keys.h                   \
52        keys_ui.c                \
53        keys_ui.h                \
54        nonce.c                  \
55        nonce.h                  \
56        nss_mgf1.c               \
57        nss_mgf1.h               \
58        nss_oaep.c               \
59        nss_oaep.h               \
60        nss_pss.c                \
61        nss_pss.h                \
62        prefs.c                  \
63        prefs.h                  \
64        rsa_nss.c                \
65        rsa_nss.h                \
66        state.c                  \
67        state.h                  \
68        state_ui.c               \
69   state_ui.h               \
70   ge_ui.c                  \
71   ge_ui.h
72
73AM_CFLAGS = \
74        -Wall -fno-strict-aliasing
75
76AM_CPPFLAGS = \
77        -DLOCALEDIR=\"$(datadir)/locale\" \
78        -DLIBDIR=\"$(libdir)/gaim/\"      \
79        -DDATADIR=\"$(datadir)\"          \
80        $(GLIB_CFLAGS)                    \
81        $(GAIM_CFLAGS)                    \
82        $(NSS_CFLAGS)
83
84
85BUILT_SOURCES = gaim-encryption-config.h
86
87$(OBJECTS): $(BUILT_SOURCES)
88
89gaim-encryption-config.h: pre-config.h
90        sed 's/#define PACKAGE/#define GE_PACKAGE/g' pre-config.h > $@
91
92testprog: $(encrypt_la_SOURCES) testmain.c
93        $(CC) -g -Wall -lgdk -lgtk $(AM_CPPFLAGS) $(CPPFLAGS) $(NSS_INCLUDES) $(NSS_CFLAGS) -o testprog testmain.c  $(NSS_LIBS)
94
95SUBDIRS = po intl
96
97ACLOCAL_AMFLAGS = -I m4
Note: See TracBrowser for help on using the repository browser.