Initial commit of actLibrary ( see #2 ) , Updates in openssl-act-engine, extended documentation ( see #6 )

This commit is contained in:
carsten.pluntke
2010-09-23 08:37:18 +00:00
parent c627f638b2
commit adbb943401
1033 changed files with 99577 additions and 23 deletions

View File

@@ -1,17 +1,23 @@
CXXFLAGS=-pthread -g -O0 -DDEBUG
# User servicable parts, place the location of the target architecture's
# OpenSSL Include and libraries here as well as the common path to the actlibrary.
OPENSSL_LIBDIR=/usr/lib/
OPENSSL_INCDIR=/usr/include/
ACTLIB_ROOT=../actlib
CXXFLAGS=-pthread -g -O0 -DDEBUG
INCDIRS=-I$(ACTLIB_ROOT)/include/ -I$(OPENSSL_INCDIR)
OPENSSL_LIBDIR=-L/home/carsten/openssl-0.9.8o
INCDIRS=-I/home/carsten/Devel/actlib/include/
LIBS=$(OPENSSL_LIBDIR) -L/home/carsten/Devel/actlib/lib -lact -ldl -lcrypto -lpthread
LIBS=-L$(OPENSSL_LIBDIR) -L$(ACTLIB_ROOT)/ -lact -ldl -lcrypto -lpthread
OBJS=engine_front.o engine_sct.o CardObject.o CardKey.o SlotList.o CertificateList.o SecOpGuard.o
TARGET=libengine_securetoken.so
TARGET=libengine_act.so
TESTOBJS=test_engine.o
TESTTARGET=test_engine
TESTLIBS=$(OPENSSL_LIBDIR) -lcrypto -lssl -ldl -lpthread
all: $(TARGET)