File: Makefile.am

package info (click to toggle)
pcsc-lite 2.4.1-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 1,700 kB
  • sloc: ansic: 13,894; python: 3,231; lex: 609; makefile: 246; sh: 54; xml: 22
file content (25 lines) | stat: -rw-r--r-- 575 bytes parent folder | download | duplicates (2)
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
# Process this file with automake to create Makefile.in.

SUBDIRS = . example

doc_DATA = \
	README.polkit

man_MANS = pcscd.8 reader.conf.5 
man_in = pcscd.8.in reader.conf.5.in

EXTRA_DIST = $(doc_DATA) $(man_in) doxygen.conf.in \
	org.debian.pcsc-lite.policy

doxygen:
	rm -fr api ; cd .. ; doxygen doc/doxygen.conf
#	cp doxygen.css api/

if ENABLE_POLKIT
install-data-hook:
	$(MKDIR_P) $(DESTDIR)/$(POLICY_DIR)
	$(INSTALL_DATA) $(srcdir)/org.debian.pcsc-lite.policy $(DESTDIR)/$(POLICY_DIR)

uninstall-hook:
	rm $(DESTDIR)/$(POLICY_DIR)/org.debian.pcsc-lite.policy
endif