From e2b84ee1184a7f27060352e556aa732c98d657ac Mon Sep 17 00:00:00 2001 From: Jeffrey Altman Date: Sat, 14 Sep 2013 20:53:51 -0400 Subject: [PATCH] Windows: Permit third party assembly definitions Change-Id: Ie68faab9cebbca36670500fdfe84881460686b64 --- lib/NTMakefile | 15 ++++++++++++++- 1 file changed, 14 insertions(+), 1 deletion(-) diff --git a/lib/NTMakefile b/lib/NTMakefile index da43aa2a0..4e7e2174c 100644 --- a/lib/NTMakefile +++ b/lib/NTMakefile @@ -40,9 +40,22 @@ dir_dce = kdfs dir_hcrypto = hcrypto !endif +# Third party plugins must be added to the assembly +# Permit third party assembly scripts + +!if exist(..\thirdparty\plugin\NTMakefile) +plugin=..\thirdparty\plugin +!endif + +!if exist(..\thirdparty\assembly\NTMakefile) +assembly=..\thirdparty\assembly +!else +assembly=..\packages\windows\assembly +!endif + SUBDIRS = roken base vers com_err sl wind asn1 sqlite \ $(dir_hcrypto) hx509 krb5 heimdal ntlm kafs gssapi hdb \ - kadm5 $(dir_45) $(dir_otp) $(dir_dce) ..\packages\windows\assembly + kadm5 $(dir_45) $(dir_otp) $(dir_dce) $(plugin) $(assembly) !include ../windows/NTMakefile.w32 -- 2.11.4.GIT