11 |
|
|
12 |
## Process this file with automake to produce Makefile.in |
## Process this file with automake to produce Makefile.in |
13 |
|
|
14 |
bin_PROGRAMS = WinPT KeyManagerExe |
bin_PROGRAMS = WinPT |
15 |
EXTRA_DIST = versioninfo.rc.in |
EXTRA_DIST = versioninfo.rc.in |
16 |
|
|
17 |
AM_CPPFLAGS = -I../w32gpgme -I../Include -I../Gnupg -I../PTD \ |
AM_CPPFLAGS = -I$(top_srcdir)/Include \ |
18 |
|
-I$(top_srcdir)/Gnupg -I$(top_srcdir)/PTD \ |
19 |
-DWIN32 -D_WINDOWS -D_MBCS |
-DWIN32 -D_WINDOWS -D_MBCS |
20 |
AM_CFLAGS = -fexceptions $(GPGME_CFLAGS) |
AM_CFLAGS = -fexceptions $(GPGME_CFLAGS) |
21 |
AM_CXXFLAGS = -fexceptions $(GPGME_CFLAGS) |
AM_CXXFLAGS = -fexceptions $(GPGME_CFLAGS) |
22 |
|
AM_LDFLAGS = -mwindows |
23 |
|
|
24 |
resource_files = \ |
resource_files = \ |
25 |
resource.h |
resource.h \ |
26 |
Safe.ico \ |
Safe.ico \ |
27 |
Sign.ico \ |
Sign.ico \ |
28 |
WinPT-en.rc \ |
WinPT-en.rc \ |
29 |
winpt2.ico \ |
winpt2.ico \ |
30 |
winpt_km.bmp |
winpt_km.bmp \ |
31 |
|
pubkey.ico \ |
32 |
|
keypair.ico |
33 |
|
|
34 |
dialog_files = \ |
dialog_files = \ |
35 |
wptAboutDlgs.cpp \ |
wptAboutDlgs.cpp \ |
76 |
wptProxySettingsDlg.cpp \ |
wptProxySettingsDlg.cpp \ |
77 |
wptTextInputDlg.cpp |
wptTextInputDlg.cpp |
78 |
|
|
79 |
code_files = |
code_files = \ |
80 |
WinPT.cpp \ |
WinPT.cpp \ |
81 |
wptCardManager.cpp \ |
wptCardManager.cpp \ |
82 |
wptCardPCSC.c \ |
wptCardPCSC.c \ |
106 |
wptTrayPop.cpp \ |
wptTrayPop.cpp \ |
107 |
wptUTF8.cpp \ |
wptUTF8.cpp \ |
108 |
wptVerifyList.cpp \ |
wptVerifyList.cpp \ |
109 |
wptW32API.cpp |
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 |
|
|
123 |
|
|
124 |
WinPT_SOURCES = $(resource_files) $(dialog_files) $(code_files) |
WinPT_SOURCES = $(resource_files) $(dialog_files) $(code_files) |
125 |
|
WinPT_LDADD = WinPT-en.o -L../Gnupg\ |
126 |
WinPT_LDADD = $(GPGME_LIBS) -l../PTD -l../MyGPGME -l../Gnupg $(W32LIBS) \ |
-lgnupg ../PTD/PTD.dll \ |
127 |
|
$(GPGME_LIBS) $(W32LIBS) \ |
128 |
-lcomctl32 -lkernel32 -luser32 -lcomdlg32 -ladvapi32 \ |
-lcomctl32 -lkernel32 -luser32 -lcomdlg32 -ladvapi32 \ |
129 |
-lshell32 -lgdi32 |
-lshell32 -lgdi32 -loleaut32 -lversion |
|
|
|
|
KeyManagerExe_SOURCES = KeyManagerExe.cpp |
|
|
|
|
130 |
|
|
131 |
resource.o: resource.rc versioninfo.rc gpgol-rsrcs.rc olflange-rsrcs.rc |
WinPT-en.o: $(resource_files) |
132 |
|
|
133 |
.rc.o: |
.rc.o: |
134 |
$(WINDRES) -I $(srcdir) -I . `test -f '$<' || echo '$(srcdir)/'`$< $@ |
$(WINDRES) -I $(srcdir) -I . -I $(top_srcdir)/Ico \ |
135 |
|
-I $(top_srcdir)/icons `test -f '$<' || echo '$(srcdir)/'`$< $@ |
136 |
|
|
137 |
|
|
138 |
|
|