Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/lexborisov/Modest.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorlexborisov <lex.borisov@gmail.com>2017-03-01 16:07:21 +0300
committerlexborisov <lex.borisov@gmail.com>2017-03-01 16:07:21 +0300
commitfa45cd70e56b495b7413ce62ab352e98b6516e9b (patch)
treec2ab346c87b4e31c06e5905e4f298bcf950ac1ac /Makefile
parentc0ca7ee5619db879c8cb29ab7a1ec64528d2d4bf (diff)
URL parsing by specification https://url.spec.whatwg.org/
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile4
1 files changed, 3 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index dc7be13..6b49ff1 100644
--- a/Makefile
+++ b/Makefile
@@ -56,6 +56,7 @@ all: create shared static
include $(TARGET)/myhtml/Makefile.mk
include $(TARGET)/mycss/Makefile.mk
include $(TARGET)/myfont/Makefile.mk
+include $(TARGET)/myurl/Makefile.mk
include $(TARGET)/modest/Makefile.mk
OBJS := $(patsubst %.c,%.o,$(SRCS))
@@ -78,7 +79,7 @@ clean:
clean_include:
rm -rf $(INCLUDE_TMP)
-clone: create clean_include myhtml_clone mycss_clone modest_clone myfont_clone
+clone: create clean_include myhtml_clone mycss_clone modest_clone myfont_clone myurl_clone
find include -name "*.h" -exec sed -i '.bak' -E 's/^[ \t]*#[ \t]*include[ \t]*"([^"]+)"/#include <\1>/g' {} \;
find include -name "*.h.bak" -exec rm -f {} \;
@@ -86,5 +87,6 @@ test:
test/mycss/declaration test/mycss/data/declaration
test/myhtml/utils/avl_tree
test/myhtml/encoding_detect_meta test/myhtml/data/encoding/detect_meta.html
+ test/myurl/url test/myurl/data
.PHONY: all clean clone test