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>2016-10-28 01:41:16 +0300
committerlexborisov <lex.borisov@gmail.com>2016-10-28 01:41:16 +0300
commit4a6c971fe87880b97bcf7f69d90020608915b23d (patch)
tree99b859002101648d7163281262824a9f69377a4f
parent3cfea886cb94937575e314af5d8cdc20cfb90b6b (diff)
Makefile fix
-rw-r--r--devel/osx/Modest.xcodeproj/project.xcworkspace/xcuserdata/alexanderborisov.xcuserdatad/UserInterfaceState.xcuserstatebin101950 -> 101951 bytes
-rw-r--r--source/mycss/Makefile.mk2
-rw-r--r--source/myhtml/Makefile.mk4
3 files changed, 5 insertions, 1 deletions
diff --git a/devel/osx/Modest.xcodeproj/project.xcworkspace/xcuserdata/alexanderborisov.xcuserdatad/UserInterfaceState.xcuserstate b/devel/osx/Modest.xcodeproj/project.xcworkspace/xcuserdata/alexanderborisov.xcuserdatad/UserInterfaceState.xcuserstate
index ec603c8..719d971 100644
--- a/devel/osx/Modest.xcodeproj/project.xcworkspace/xcuserdata/alexanderborisov.xcuserdatad/UserInterfaceState.xcuserstate
+++ b/devel/osx/Modest.xcodeproj/project.xcworkspace/xcuserdata/alexanderborisov.xcuserdatad/UserInterfaceState.xcuserstate
Binary files differ
diff --git a/source/mycss/Makefile.mk b/source/mycss/Makefile.mk
index 3303402..d1b473f 100644
--- a/source/mycss/Makefile.mk
+++ b/source/mycss/Makefile.mk
@@ -6,6 +6,8 @@ HDRS += $(foreach dir,$(SUBDIRS),$(find_files_h))
SRCS += $(foreach dir,$(SUBDIRS),$(find_files_c))
mycss_clone: MyCSS_DIR_$(SUBDIRS)
+ mkdir -p $(INCLUDE_TMP)/mycss
+ cp $(SRCDIR)/mycss/*.h $(INCLUDE_TMP)/mycss
MyCSS_DIR_$(SUBDIRS):
mkdir -p $(INCLUDE_TMP)/mycss/$(patsubst MyCSS_DIR_%,%,$@)
diff --git a/source/myhtml/Makefile.mk b/source/myhtml/Makefile.mk
index 26aea7e..81d5d63 100644
--- a/source/myhtml/Makefile.mk
+++ b/source/myhtml/Makefile.mk
@@ -1,11 +1,13 @@
find_files_h = $(wildcard $(SRCDIR)/myhtml/$(dir)/*.h)
find_files_c = $(wildcard $(SRCDIR)/myhtml/$(dir)/*.c)
-SUBDIRS := . "utils"
+SUBDIRS := . utils
HDRS += $(foreach dir,$(SUBDIRS),$(find_files_h))
SRCS += $(foreach dir,$(SUBDIRS),$(find_files_c))
myhtml_clone: MyHTML_DIR_$(SUBDIRS)
+ mkdir -p $(INCLUDE_TMP)/myhtml/utils
+ cp $(SRCDIR)/myhtml/utils/*.h $(INCLUDE_TMP)/myhtml/utils
MyHTML_DIR_$(SUBDIRS):
mkdir -p $(INCLUDE_TMP)/myhtml/$(patsubst MyHTML_DIR_%,%,$@)