summaryrefslogtreecommitdiff
path: root/xmake/plugins/project/make/xmakefile.lua
diff options
context:
space:
mode:
authorruki <[email protected]>2019-09-21 13:47:22 +0800
committerruki <[email protected]>2019-09-21 13:47:22 +0800
commit8087d1444858635b8f801e8cf13eedc96cf53f83 (patch)
tree6821ef7140d93366181ef5fc7ba839275f415255 /xmake/plugins/project/make/xmakefile.lua
parente0c87675917eaca2332ff7ab2a3d5e8f841c4192 (diff)
add xmakefile generator
Diffstat (limited to 'xmake/plugins/project/make/xmakefile.lua')
-rw-r--r--xmake/plugins/project/make/xmakefile.lua120
1 files changed, 120 insertions, 0 deletions
diff --git a/xmake/plugins/project/make/xmakefile.lua b/xmake/plugins/project/make/xmakefile.lua
new file mode 100644
index 000000000..596c22ac6
--- /dev/null
+++ b/xmake/plugins/project/make/xmakefile.lua
@@ -0,0 +1,120 @@
+--!A cross-platform build utility based on Lua
+--
+-- Licensed under the Apache License, Version 2.0 (the "License");
+-- you may not use this file except in compliance with the License.
+-- You may obtain a copy of the License at
+--
+-- http://www.apache.org/licenses/LICENSE-2.0
+--
+-- Unless required by applicable law or agreed to in writing, software
+-- distributed under the License is distributed on an "AS IS" BASIS,
+-- WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+-- See the License for the specific language governing permissions and
+-- limitations under the License.
+--
+-- Copyright (C) 2015 - 2019, TBOOX Open Source Group.
+--
+-- @author ruki
+-- @file xmakefile.lua
+--
+
+-- imports
+import("core.project.project")
+
+-- make build
+function _make_build(makefile)
+ makefile:print(".PHONY: build")
+ makefile:print("")
+ makefile:print("build: ")
+ makefile:print("\t@xmake --build %${TARGET}")
+ makefile:print("")
+end
+
+-- make rebuild
+function _make_rebuild(makefile)
+ makefile:print("rebuild: ")
+ makefile:print("\t@xmake --rebuild %${TARGET}")
+ makefile:print("")
+end
+
+-- make install
+function _make_install(makefile)
+ makefile:print("install: ")
+ makefile:print("\t@xmake install %${TARGET}")
+ makefile:print("")
+end
+
+-- make uninstall
+function _make_uninstall(makefile)
+ makefile:print("uninstall: ")
+ makefile:print("\t@xmake uninstall %${TARGET}")
+ makefile:print("")
+end
+
+-- make package
+function _make_package(makefile)
+ makefile:print("package: ")
+ makefile:print("\t@xmake package %${TARGET}")
+ makefile:print("")
+end
+
+-- make clean
+function _make_clean(makefile)
+ makefile:print("clean: ")
+ makefile:print("\t@xmake clean %${TARGET}")
+ makefile:print("")
+end
+
+-- make run
+function _make_run(makefile)
+ makefile:print("run: ")
+ makefile:print("\t@xmake run %${TARGET}")
+ makefile:print("")
+end
+
+-- make debug
+function _make_debug(makefile)
+ makefile:print("debug: ")
+ makefile:print("\t@xmake run -d %${TARGET}")
+ makefile:print("")
+end
+
+-- make
+function make(outputdir)
+
+ -- enter project directory
+ local oldir = os.cd(os.projectdir())
+
+ -- open the makefile
+ local makefile = io.open(path.join(outputdir, "makefile"), "w")
+
+ -- make build
+ _make_build(makefile)
+
+ -- make rebuild
+ _make_rebuild(makefile)
+
+ -- make install
+ _make_install(makefile)
+
+ -- make uninstall
+ _make_uninstall(makefile)
+
+ -- make package
+ _make_package(makefile)
+
+ -- make clean
+ _make_clean(makefile)
+
+ -- make run
+ _make_run(makefile)
+
+ -- make debug
+ _make_debug(makefile)
+
+ -- close the makefile
+ makefile:close()
+
+ -- leave project directory
+ os.cd(oldir)
+end