| 1 |
# Process this file with automake to create Makefile.in.
|
| 2 |
|
| 3 |
AUTOMAKE_OPTIONS = no-dependencies
|
| 4 |
SUBDIRS = src etc doc
|
| 5 |
|
| 6 |
AUX_DIST = \
|
| 7 |
$(ac_aux_dir)/aclocal.m4 \
|
| 8 |
$(ac_aux_dir)/config.guess \
|
| 9 |
$(ac_aux_dir)/config.sub \
|
| 10 |
$(ac_aux_dir)/depcomp \
|
| 11 |
$(ac_aux_dir)/install-sh \
|
| 12 |
$(ac_aux_dir)/ltmain.sh \
|
| 13 |
$(ac_aux_dir)/missing \
|
| 14 |
$(ac_aux_dir)/mkinstalldirs \
|
| 15 |
$(ac_aux_dir)/ylwrap
|
| 16 |
|
| 17 |
WIN32 = \
|
| 18 |
win32/PCSC.cpp \
|
| 19 |
win32/PCSC.dsp \
|
| 20 |
win32/PCSC.h \
|
| 21 |
win32/pthread.h \
|
| 22 |
win32/sched.h \
|
| 23 |
win32/StdAfx.cpp \
|
| 24 |
win32/StdAfx.h \
|
| 25 |
win32/win32_config.h \
|
| 26 |
win32/win32_pcsclite.h
|
| 27 |
|
| 28 |
EXTRA_DIST = DRIVERS SECURITY reconf bootstrap HELP ChangeLog.cvs \
|
| 29 |
$(AUX_DIST) $(ac_aux_dir)/acx_pthread.m4 $(WIN32)
|
| 30 |
|
| 31 |
MAINTAINERCLEANFILES = $(AUX_DIST)
|
| 32 |
DISTCLEANFILES = ChangeLog.cvs
|
| 33 |
|
| 34 |
# Automatically update the libtool script if it becomes out-of-date.
|
| 35 |
LIBTOOL_DEPS = @LIBTOOL_DEPS@
|
| 36 |
libtool: $(LIBTOOL_DEPS)
|
| 37 |
$(SHELL) ./config.status --recheck
|
| 38 |
|
| 39 |
ChangeLog.cvs:
|
| 40 |
rcs2log | perl -e 'while (<>) { s/corcoran /David Corcoran /; \
|
| 41 |
s/corcoran-guest /David Corcoran /; \
|
| 42 |
s/oznet /Chris Osgood /; s/cprados /Carlos Prados /; \
|
| 43 |
s/mikeg /Michael Gile /; s/rousseau /Ludovic Rousseau /; \
|
| 44 |
s/giraud /Jean-Luc Giraud /; \
|
| 45 |
s+/cvsroot/pcsclite/PCSC/++g; print ; }' > $@
|
| 46 |
|
| 47 |
.PHONY: ChangeLog.cvs
|
| 48 |
|