diff options
Diffstat (limited to 'sesman/chansrv/pcsc/wrapper/Makefile')
-rwxr-xr-x | sesman/chansrv/pcsc/wrapper/Makefile | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/sesman/chansrv/pcsc/wrapper/Makefile b/sesman/chansrv/pcsc/wrapper/Makefile new file mode 100755 index 00000000..181c6fbd --- /dev/null +++ b/sesman/chansrv/pcsc/wrapper/Makefile @@ -0,0 +1,14 @@ + +CC=bcc32.exe + +CFLAGS=-O2 + +OBJS=winscard.obj + +winscard.dll: $(OBJS) + $(CC) -ewinscard.dll -tWD $(OBJS) + +clean: + -del winscard.dll + -del *.obj + -del *.tds |