diff --git a/api_breaking_changes.md b/api_breaking_changes.md index 6e7036a..f807f0c 100644 --- a/api_breaking_changes.md +++ b/api_breaking_changes.md @@ -5,7 +5,6 @@ * If you use encoding enum, like ```MyHTML_ENCODING_UTF8```, now it ```MyENCODING_UTF_8```, i.e ```MyHTML_ENCODING_* => MyENCODING_*``` * Functions migrated to MyCORE from MyHTML: ```myhtml_incoming_buffer_*``` => ```mycore_incoming_buffer_*```, ```myhtml_string*``` => ```mycore_string*```, ```myhtml_utils*``` => ```mycore_utils*``` - 0.0.1 => 0.0.4 =========== Removed all depending on the Tree. Now you can get a tree of nodes ```myhtml_node_tree``` diff --git a/examples/Makefile b/examples/Makefile index 7730ed6..d919f52 100644 --- a/examples/Makefile +++ b/examples/Makefile @@ -15,6 +15,7 @@ CC ?= gcc # other Makefile #*************** BINARY_PATH_RELATIVE := .. +MODEST_SOURCE := $(BINARY_PATH_RELATIVE)/source include $(BINARY_PATH_RELATIVE)/Makefile.bin.cfg BINARY_TO_DIR := $(BINARY_PATH_RELATIVE)/$(BINARY_DIR_BASE) diff --git a/test/Makefile b/test/Makefile index 5bbb11a..e1a8bf1 100644 --- a/test/Makefile +++ b/test/Makefile @@ -15,6 +15,7 @@ CC ?= gcc # other Makefile #*************** BINARY_PATH_RELATIVE := .. +MODEST_SOURCE := $(BINARY_PATH_RELATIVE)/source include $(BINARY_PATH_RELATIVE)/Makefile.bin.cfg BINARY_TO_DIR := $(BINARY_PATH_RELATIVE)/$(TEST_DIR_BASE)