-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathMakefile.am
60 lines (51 loc) · 1.72 KB
/
Makefile.am
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
#
# Copyright (c) 2005-2008 Alon Bar-Lev <[email protected]>
# All rights reserved.
#
# This program is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License version 2
# as published by the Free Software Foundation.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program (see the file COPYING.GPL included with this
# distribution); if not, write to the Free Software Foundation, Inc.,
# 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
#
AUTOMAKE_OPTIONS=foreign dist-bzip2 1.10
ACLOCAL_AMFLAGS=-I m4
MAINTAINERCLEANFILES = \
config.log config.status \
$(srcdir)/Makefile.in \
$(srcdir)/config.h.in $(srcdir)/config.h.in~ $(srcdir)/configure \
$(srcdir)/install-sh $(srcdir)/ltmain.sh $(srcdir)/missing \
$(srcdir)/depcomp $(srcdir)/aclocal.m4 \
$(srcdir)/config.guess $(srcdir)/config.sub
CLEANFILES=pkcs11-dump.1.html
bin_PROGRAMS=pkcs11-dump
dist_doc_DATA=README COPYING COPYING.GPL
pkcs11_dump_SOURCES= \
pkcs11.h \
pkcs11-dump.cpp
if WIN32
nodist_pkcs11_dump_SOURCES=versioninfo.rc
endif
if WIN32
nodist_html_DATA=pkcs11-dump.1.html
dist_noinst_DATA=pkcs11-dump.1
pkcs11-dump.1.html: pkcs11-dump.1
$(MAN2HTML) < "$^" > "$@"
else
dist_man_MANS=pkcs11-dump.1
endif
RCCOMPILE = $(RC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) \
$(AM_CPPFLAGS) $(CPPFLAGS)
LTRCCOMPILE = $(LIBTOOL) --mode=compile --tag=RC $(RCCOMPILE)
.rc.lo:
$(LTRCCOMPILE) -i $< -o $@
.rc.o:
$(RCCOMPILE) -i $< -o $@