Skip to content
Snippets Groups Projects
Commit d88d7240 authored by rswindell's avatar rswindell
Browse files

Support new "encode" library.

Prepare for upcoming "hash" library.
parent d2d28e06
No related branches found
No related tags found
No related merge requests found
......@@ -92,10 +92,12 @@
# (Numeric ONLY) #
# OUTPUT - Compiler flag specifying output filename #
# LOUTPUT - Linker flag specifying output filename #
# XPDEV_SRC - Path to xpdev #
# UIFC_SRC - Path to uifc #
# CIOLIB_SRC - Path to ciolib #
# SMBLIB_SRC - Path to smblib #
# XPDEV_SRC - Path to xpdev lib source #
# UIFC_SRC - Path to uifc lib source #
# CIOLIB_SRC - Path to ciolib source #
# SMBLIB_SRC - Path to smblib source #
# ENCODE_SRC - Path to encode lib source #
# HASH_SRC - Path to hash lib source #
# MT_CFLAGS - CFLAGS for building MT objects #
# MT_LDFLAGS - LDFLAGS for linking MT targets #
# UL_PRE - Use Library prefix (*nix is -l) #
......@@ -398,6 +400,8 @@ XPDEV_SRC := $(SRC_ROOT)$(DIRSEP)xpdev
CIOLIB_SRC := $(SRC_ROOT)$(DIRSEP)conio
SMBLIB_SRC := $(SRC_ROOT)$(DIRSEP)smblib
UIFC_SRC := $(SRC_ROOT)$(DIRSEP)uifc
ENCODE_SRC := $(SRC_ROOT)$(DIRSEP)encode
HASH_SRC := $(SRC_ROOT)$(DIRSEP)hash
3RDP_ROOT ?= $(SRC_ROOT)$(DIRSEP)..$(DIRSEP)3rdp
3RDP_BUILD := $(3RDP_ROOT)$(DIRSEP)build
......@@ -417,6 +421,10 @@ endif
-include $(CIOLIB_SRC)$(DIRSEP)Common.gmake
-include $(UIFC_SRC)$(DIRSEP)Common.make
-include $(UIFC_SRC)$(DIRSEP)Common.gmake
-include $(ENCODE_SRC)$(DIRSEP)Common.make
-include $(ENCODE_SRC)$(DIRSEP)Common.gmake
-include $(HASH_SRC)$(DIRSEP)Common.make
-include $(HASH_SRC)$(DIRSEP)Common.gmake
-include $(3RDP_BUILD)$(DIRSEP)Common.make
-include $(3RDP_BUILD)$(DIRSEP)Common.gmake
......@@ -480,6 +488,14 @@ $(XPDEV-MT_LIB): xpdev-mt
xpdev-mt:
$(MAKE) -C $(XPDEV_SRC) mtlib
$(ENCODE_LIB): encode
encode:
$(MAKE) -C $(ENCODE_SRC) lib
$(HASH_LIB): hash
hash:
$(MAKE) -C $(HASH_SRC) lib
$(SMBLIB): smblib
smblib:
$(MAKE) -C $(SMBLIB_SRC) lib
......@@ -503,3 +519,4 @@ js:
$(CRYPT_LIB): $(CRYPT_DEPS)
cl:
$(MAKE) -C $(3RDPBUILDDIR) cryptlib
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment