xca/lib/Makefile
Christian Hohnstaedt d36e6eb0cb Implement nested transactions.
The DbTransaction class automatically rolls back when the scope
is left (destructor) and no commit happenned.

Every transaction begin will increment the counter,
each commit/rollback will decrement it. Only if all transactions
finished with a commit, a final database commit will be performed.
2018-03-05 07:46:10 +01:00

19 lines
545 B
Makefile

ifeq ($(TOPDIR),)
TOPDIR=..
BUILD=..
endif
MOCNAMES=db_crl db_key db_temp db_x509 db_x509req db_x509super db_base db_token\
pki_temp pki_x509 pki_crl pki_x509req pki_key pki_x509super pki_pkcs12 \
pki_base pki_multi pki_evp pki_scard pass_info pki_pkcs7 main
NAMES=$(MOCNAMES) asn1int oid x509rev asn1time version \
x509v3ext func load_obj x509name db \
pk11_attribute pkcs11 pkcs11_lib Passwd builtin_curves entropy sql
OBJS=$(patsubst %, %.o, $(NAMES)) $(patsubst %, moc_%.o, $(MOCNAMES))
include $(TOPDIR)/Rules.mak
sinclude .depend