94b2861243
Former-commit-id: 5f9c6ae75f295e057a7d2971f3a6df4656fa8850
39 lines
1.1 KiB
Makefile
39 lines
1.1 KiB
Makefile
thisdir = class/System.Security
|
|
SUBDIRS =
|
|
include ../../build/rules.make
|
|
|
|
ifndef NO_MONO_SECURITY
|
|
MONO_SECURITY_DLL=$(the_libdir_base)/Mono.Security.dll
|
|
MONO_SECURITY=Mono.Security
|
|
endif
|
|
|
|
LIBRARY = System.Security.dll
|
|
LIB_REFS = secxml/System bare/System.Xml $(MONO_SECURITY)
|
|
LIB_MCS_FLAGS = -nowarn:618 \
|
|
-d:SECURITY_DEP \
|
|
-nowarn:414
|
|
|
|
LOCAL_MCS_FLAGS =
|
|
|
|
TEST_MCS_FLAGS = $(LIB_MCS_FLAGS) -nowarn:168,169,183,219,414
|
|
|
|
EXTRA_DISTFILES = \
|
|
Test/System.Security.Cryptography.Xml/sample.pfx \
|
|
Test/System.Security.Cryptography.Xml/EncryptedXmlSample1.xml \
|
|
Test/System.Security.Cryptography.Xml/EncryptedXmlSample2.xml \
|
|
Test/System.Security.Cryptography.Xml/EncryptedXmlSample3.xml \
|
|
Test/System.Security.Cryptography.Pkcs/detached.data \
|
|
Test/System.Security.Cryptography.Pkcs/detached.p7
|
|
|
|
include ../../build/library.make
|
|
|
|
$(build_lib): $(secxml_libdir)/System.dll $(MONO_SECURITY_DLL)
|
|
|
|
$(secxml_libdir)/System.dll:
|
|
(cd ../System; $(MAKE) $@)
|
|
|
|
$(the_libdir_base)/Mono.Security.dll:
|
|
(cd ../Mono.Security; $(MAKE))
|
|
|
|
.NOTPARALLEL: $(secxml_libdir)/System.dll $(bare_libdir)/Mono.Security.dll
|