EmulatorPkg/BuildOptions: Add CLANGPDB DLINK_FLAGS flags to build options

[Issue] : There is no DLINK_FLAGS definition for CLANGPDB,
	leading to potential discrepancies in build alignments

[Resolution] : This change adds a CLANGPDB line for DLINK_FLAGS.
	Maintaining the alignment with existing standards in place for
	other compiler packages.

Signed-off-by: Deepak5x <deepakx.singh@intel.com>
diff --git a/EmulatorPkg/EmulatorPkg.dsc b/EmulatorPkg/EmulatorPkg.dsc
index 5bba746..639908a 100644
--- a/EmulatorPkg/EmulatorPkg.dsc
+++ b/EmulatorPkg/EmulatorPkg.dsc
@@ -539,7 +539,7 @@
   #

   # CLANGPDB tool chain depends on WIN_HOST_BUILD flag to generate the windows application.

   #

-  GCC:*_CLANGPDB_*_DLINK_FLAGS     = /ALIGN:4096 /FILEALIGN:4096

-  GCC:DEBUG_CLANGPDB_*_DLINK_FLAGS = /BASE:0x10000

-  GCC:NOOPT_CLANGPDB_*_DLINK_FLAGS = /BASE:0x10000

+  CLANGPDB: *_*_*_DLINK_FLAGS = /ALIGN:4096 /FILEALIGN:4096

+  CLANGPDB:DEBUG_*_*_DLINK_FLAGS = /BASE:0x10000

+  CLANGPDB:NOOPT_*_*_DLINK_FLAGS = /BASE:0x10000

 !endif