diff options
| author | ruki <[email protected]> | 2015-05-18 11:25:38 +0800 |
|---|---|---|
| committer | ruki <[email protected]> | 2015-05-18 11:25:38 +0800 |
| commit | c94218b659016aadb3f1dc63cc82c3ae8dc14320 (patch) | |
| tree | ddbbf771f33ae55180816403473623846a79750b /xmake/scripts/base/makefile.lua | |
| parent | 7be8238f634969e80e678f59ab418900f846b094 (diff) | |
add some interfaces for changing directory
Diffstat (limited to 'xmake/scripts/base/makefile.lua')
| -rw-r--r-- | xmake/scripts/base/makefile.lua | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/xmake/scripts/base/makefile.lua b/xmake/scripts/base/makefile.lua new file mode 100644 index 000000000..5f71538c2 --- /dev/null +++ b/xmake/scripts/base/makefile.lua @@ -0,0 +1,27 @@ +--!The Automatic Crmakefiles-platform Build Tool +-- +-- XMake is free software; you can redistribute it and/or modify +-- it under the terms of the GNU Lesser General Public License as published by +-- the Free Software Foundation; either version 2.1 of the License, or +-- (at your option) any later version. +-- +-- XMake is distributed in the hope that it will be useful, +-- but WITHOUT ANY WARRANTY; without even the implied warranty of +-- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +-- GNU Lesser General Public License for more details. +-- +-- You should have received a copy of the GNU Lesser General Public License +-- along with XMake; +-- If not, see <a href="http://www.gnu.org/licenses/"> http://www.gnu.org/licenses/</a> +-- +-- Copyright (C) 2009 - 2015, ruki All rights reserved. +-- +-- @author ruki +-- @file makefile.lua +-- + +-- define module: makefile +local makefile = makefile or {} + +-- return module: makefile +return makefile |
