summaryrefslogtreecommitdiffstats
path: root/sesman/chansrv/pcsc/Makefile
diff options
context:
space:
mode:
authorJay Sorg <jay.sorg@gmail.com>2013-09-14 12:59:42 -0700
committerJay Sorg <jay.sorg@gmail.com>2013-09-14 12:59:42 -0700
commit68371ed3618601bac3202a1180a73193eabfcd40 (patch)
tree5622cc4fe92afb625a131404a587ef5e0848aa27 /sesman/chansrv/pcsc/Makefile
parentedf483ecb66eff4cc378ea4c3ebba3410947ebe7 (diff)
downloadxrdp-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/Makefile12
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