diff options
author | Tony Theodore <tonyt@logyst.com> | 2018-03-11 02:19:24 (GMT) |
---|---|---|
committer | Tony Theodore <tonyt@logyst.com> | 2018-03-12 03:28:14 (GMT) |
commit | 38c43b5017befbf0153d3a5f2165e80c064329ad (patch) | |
tree | 8bf6e35d8bfc55f906517376fe0edc6bcb18e20b | |
parent | 02e11b8dc1690a1730bd35d5b61d5c9e3bbf2f5a (diff) | |
download | mxe-38c43b5017befbf0153d3a5f2165e80c064329ad.zip mxe-38c43b5017befbf0153d3a5f2165e80c064329ad.tar.gz mxe-38c43b5017befbf0153d3a5f2165e80c064329ad.tar.bz2 |
sub makefiles: standardize names and add to build-pkg
-rw-r--r-- | Makefile | 6 | ||||
-rw-r--r-- | mxe.github.mk (renamed from github.mk) | 0 | ||||
-rw-r--r-- | mxe.patch.mk (renamed from patch.mk) | 0 | ||||
-rw-r--r-- | mxe.updates.mk (renamed from updates.mk) | 0 | ||||
-rwxr-xr-x | tools/build-pkg.lua | 10 |
5 files changed, 9 insertions, 7 deletions
@@ -215,7 +215,7 @@ define AUTOTOOLS_BUILD endef # include github related functions -include $(PWD)/github.mk +include $(PWD)/mxe.github.mk # shared lib preload to disable networking, enable faketime etc PRELOAD_VARS := LD_PRELOAD DYLD_FORCE_FLAT_NAMESPACE DYLD_INSERT_LIBRARIES @@ -1081,5 +1081,5 @@ docs/packages.json: $(foreach 1,$(PKGS),$(PKG_MAKEFILES)) @echo '}' >> $@ # for other mxe functions -include patch.mk -include updates.mk +include mxe.patch.mk +include mxe.updates.mk diff --git a/github.mk b/mxe.github.mk index e2bbd1a..e2bbd1a 100644 --- a/github.mk +++ b/mxe.github.mk diff --git a/updates.mk b/mxe.updates.mk index 9a4455d..9a4455d 100644 --- a/updates.mk +++ b/mxe.updates.mk diff --git a/tools/build-pkg.lua b/tools/build-pkg.lua index d1c3c7f..90949c6 100755 --- a/tools/build-pkg.lua +++ b/tools/build-pkg.lua @@ -1057,14 +1057,16 @@ local function makeMxeSourcePackage() -- dependencies local deps = {} local files = { + 'docs', + 'ext', 'LICENSE.md', 'Makefile', - 'patch.mk', + 'mxe.github.mk', + 'mxe.patch.mk', + 'mxe.updates.mk', + 'plugins', 'README.md', - 'docs', - 'ext', 'src', - 'plugins', 'tools', } local d1 = "MXE source" |