diff options
author | Jay Sorg <jay.sorg@gmail.com> | 2013-09-14 12:59:42 -0700 |
---|---|---|
committer | Jay Sorg <jay.sorg@gmail.com> | 2013-09-14 12:59:42 -0700 |
commit | 68371ed3618601bac3202a1180a73193eabfcd40 (patch) | |
tree | 5622cc4fe92afb625a131404a587ef5e0848aa27 /sesman/chansrv/pcsc/Makefile | |
parent | edf483ecb66eff4cc378ea4c3ebba3410947ebe7 (diff) | |
download | xrdp-proprietary-68371ed3618601bac3202a1180a73193eabfcd40.tar.gz xrdp-proprietary-68371ed3618601bac3202a1180a73193eabfcd40.zip |
chansrv: work on smartcard
Diffstat (limited to 'sesman/chansrv/pcsc/Makefile')
-rw-r--r-- | sesman/chansrv/pcsc/Makefile | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/sesman/chansrv/pcsc/Makefile b/sesman/chansrv/pcsc/Makefile new file mode 100644 index 00000000..483151f2 --- /dev/null +++ b/sesman/chansrv/pcsc/Makefile @@ -0,0 +1,12 @@ + +OBJS = xrdp_pcsc.o + +CFLAGS = -Wall -O2 -fPIC + +all: libpcsclite.so + +libpcsclite.so: $(OBJS) + $(CC) $(LDFLAGS) -shared -o libpcsclite.so $(OBJS) + +clean: + rm -f $(OBJS) libpcsclite.so |