-
-
Notifications
You must be signed in to change notification settings - Fork 62
/
Makefile.am
36 lines (28 loc) · 829 Bytes
/
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
if WITH_GETTEXT
SUBDIRS = po
endif
PERL_BINS = ATR_analysis.in scriptor gscriptor
PERL_MANPAGES = ATR_analysis.1p.in scriptor.1 gscriptor.1
bin_PROGRAMS = pcsc_scan
pcsc_scan_SOURCES = pcsc_scan.c pcsc_scan.1
pcsc_scan_CFLAGS = $(PCSC_CFLAGS) $(PTHREAD_CFLAGS)
pcsc_scan_LDADD = $(PCSC_LIBS) $(PTHREAD_LIBS)
bin_SCRIPTS = $(subst .in, , $(PERL_BINS))
pcsc_DATA = smartcard_list.txt gscriptor.png
pcscdir = $(pcsc_dir)
desktopdir = $(datadir)/applications
desktop_in_files = gscriptor.desktop.in
desktop_DATA = $(desktop_in_files:.desktop.in=.desktop)
# install the man pages
man_MANS = pcsc_scan.1 $(subst .in, , $(PERL_MANPAGES))
EXTRA_DIST = \
Changelog \
LICENCE \
meson.build \
$(PERL_BINS) \
$(PERL_MANPAGES) \
$(pcsc_DATA) \
gscriptor.desktop \
test.script
Changelog:
git log --stat --decorate=short > $@