/[winpt]/trunk/Src/Makefile.am
ViewVC logotype

Contents of /trunk/Src/Makefile.am

Parent Directory Parent Directory | Revision Log Revision Log


Revision 193 - (show annotations)
Sat Apr 1 12:36:35 2006 UTC (18 years, 11 months ago) by twoaday
File size: 3302 byte(s)
2006-03-31  Timo Schulz  <ts@g10code.de>
 
        * wptCommonDlg.cpp (nls_load_langlist): New.
        (nsl_set_language): New.
        (nls_dlg_proc): New.
        (select_language): New. Allow user to select the language.
        * wptNLS.c (get_gettext_langid): Updated available languages.
        * WinPT.cpp (WinMain): Allow to select the languag on first
        start in non-installer environments.
        * wptVerifyList.cpp (verlist_build): Simplified.
        (verlist_add_sig_log): Likewise.
        * wptListview.cpp (listview_set_column_width,
        listview_get_selected_item): New.
        * wptKeyManager.cpp (gpg_clip_export): Merged into..
        (km_clip_export): ..this function.


1 # Makefile.am - main makefile for WinPT
2 # Copyright (C) 2005 g10 Code GmbH
3 #
4 # This file is free software; as a special exception the author gives
5 # unlimited permission to copy and/or distribute it, with or without
6 # modifications, as long as this notice is preserved.
7 #
8 # This program is distributed in the hope that it will be useful, but
9 # WITHOUT ANY WARRANTY, to the extent permitted by law; without even the
10 # implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
11
12 ## Process this file with automake to produce Makefile.in
13
14 bin_PROGRAMS = WinPT
15 EXTRA_DIST = versioninfo.rc.in
16
17 AM_CPPFLAGS = -I$(top_srcdir)/Include \
18 -I$(top_srcdir)/Gnupg -I$(top_srcdir)/PTD \
19 -DWIN32 -D_WINDOWS -D_MBCS
20 AM_CFLAGS = -fexceptions $(GPGME_CFLAGS)
21 AM_CXXFLAGS = -fexceptions $(GPGME_CFLAGS)
22 AM_LDFLAGS = -mwindows
23
24 resource_files = \
25 resource.h \
26 Safe.ico \
27 Sign.ico \
28 WinPT-en.rc \
29 winpt2.ico \
30 pubkey.ico \
31 keypair.ico
32
33 dialog_files = \
34 wptAboutDlgs.cpp \
35 wptCardDlg.cpp \
36 wptClipDecryptDlg.cpp \
37 wptClipEditDlg.cpp \
38 wptClipEncryptDlg.cpp \
39 wptClipImportDlg.cpp \
40 wptClipSignDlg.cpp \
41 wptClipSignEncDlg.cpp \
42 wptClipVerifyDlg.cpp \
43 wptCommonDlg.cpp \
44 wptDateDlg.cpp \
45 wptFileManagerDlg.cpp \
46 wptFileSaveDlg.cpp \
47 wptFileStatDlg.cpp \
48 wptFileVerifyDlg.cpp \
49 wptFirstRunDlg.cpp \
50 wptGPGOptDlg.cpp \
51 wptGPGPrefsDlg.cpp \
52 wptGroupsDlg.cpp \
53 wptKeyCacheDlg.cpp \
54 wptKeyEditDlgs.cpp \
55 wptKeyEditOwnertrustDlg.cpp \
56 wptKeyeditSetPrefDlg.cpp \
57 wptKeygenCBDlg.cpp \
58 wptKeygenDlg.cpp \
59 wptKeyImportStatusDlg.cpp \
60 wptKeyManagerDlg.cpp \
61 wptKeyPropsDlg.cpp \
62 wptKeyRevokeDlg.cpp \
63 wptKeyRevokersDlg.cpp \
64 wptKeyserverDlg.cpp \
65 wptKeyserverSearchDlg.cpp \
66 wptKeysigDlg.cpp \
67 wptKeysignDlg.cpp \
68 wptKeyTrustPathDlg.cpp \
69 wptMDSumDlg.cpp \
70 wptOwnertrustDlg.cpp \
71 wptPassphraseDlg.cpp \
72 wptPINDlg.cpp \
73 wptPreferencesDlg.cpp \
74 wptProgressDlg.cpp \
75 wptProxySettingsDlg.cpp \
76 wptTextInputDlg.cpp \
77 wptSigTreeDlg.cpp
78
79 code_files = \
80 WinPT.cpp \
81 wptCardManager.cpp \
82 wptCardPCSC.c \
83 wptCryptdisk.cpp \
84 wptCurrWnd.cpp \
85 wptErrors.cpp \
86 wptFileManager.cpp \
87 wptGPG.cpp \
88 wptGPGME.cpp \
89 wptGPGParser.cpp \
90 wptHotkey.cpp \
91 wptHTTP.cpp \
92 wptImagelist.cpp \
93 wptImportList.cpp \
94 wptKeylist.cpp \
95 wptKeyManager.cpp \
96 wptKeyserver.cpp \
97 wptListView.cpp \
98 wptMainProc.cpp \
99 wptMAPI.cpp \
100 wptNLS.c \
101 wptPassCache.cpp \
102 wptPassphraseCB.cpp \
103 wptRegistry.cpp \
104 wptSigList.cpp \
105 wptSymEnc.cpp \
106 wptTrayPop.cpp \
107 wptUTF8.cpp \
108 wptVerifyList.cpp \
109 wptW32API.cpp \
110 wptGPGUtil.cpp \
111 wptCardEdit.cpp \
112 wptCardEditCB.cpp \
113 wptKeyEdit.cpp \
114 wptKeyEditCB.cpp \
115 wptFileCBS.cpp \
116 wptKeyCache.cpp \
117 wptUtil.cpp \
118 wptClipboard.cpp \
119 wptGPGMEData.cpp \
120 wptGroupManager.cpp \
121 wptGPGMEWrapper.cpp \
122 wptSOCKS.cpp \
123 wptSafeEditCtrl.cpp
124
125
126 WinPT_SOURCES = $(resource_files) $(dialog_files) $(code_files)
127 WinPT_LDADD = WinPT-en.o -L../Gnupg\
128 -lgnupg ../PTD/PTD.dll \
129 $(GPGME_LIBS) $(W32LIBS) \
130 -lcomctl32 -lkernel32 -luser32 -lcomdlg32 -ladvapi32 \
131 -lshell32 -lgdi32 -lversion
132
133 WinPT-en.o: $(resource_files)
134
135 .rc.o:
136 $(WINDRES) -I $(srcdir) -I . -I $(top_srcdir)/Ico \
137 -I $(top_srcdir)/icons `test -f '$<' || echo '$(srcdir)/'`$< $@
138
139
140
141

Properties

Name Value
svn:eol-style native

[email protected]
ViewVC Help
Powered by ViewVC 1.1.26