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 Binary files a/devel/osx/Modest.xcodeproj/project.xcworkspace/xcuserdata/alexanderborisov.xcuserdatad/UserInterfaceState.xcuserstate and b/devel/osx/Modest.xcodeproj/project.xcworkspace/xcuserdata/alexanderborisov.xcuserdatad/UserInterfaceState.xcuserstate 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_%,%,$@)