Python Makefile Tool
Project description
pymaketool
pymaketool is an elegant and simple tool to build and manager large C/C++ projects and libraries. The main purpose is to ease the build process of a project using Python for find and organize file sources.
Quick Start
Install required packages:
Ubuntu
$ sudo apt-get install -y gcc make python3 python3-pip python3-gi python3-gi-cairo gir1.2-gtk-3.0 git time zip
Fedora
$ sudo dnf install python3 python3-pip python3-gobject gtk3 time zip git gcc
Arch Linux
$ sudo pacman -S gcc make python python-pip python-gobject gtk3 time zip git
Install pymaketool:
$ pip3 install pymaketool
Create new basic C project.
$ pynewproject CLinuxGCC
(author) Your name: Ericson
(project_name) Your project name: hello
$ cd hello
hello$ make clean
hello$ make
hello$ ./Release/hello
Note: this example use EclipseAddon by default, pymaketool generate files .setting/language.settings.xml and .cproject.
Quick start in Docker
Pull imagen and run container:
$ docker pull ericsonjoseph/pymaketool
$ docker run -it ericsonjoseph/pymaketool
ubuntu@$ pynewproject CLinuxGCC
Quick Info
pymaketool process modules of code like objects. These objects ware define by files *_mk.py. With Python you can code how to discover and get source files and include paths, e.g.:
# File app_mk.py
from pymakelib import module
@module.ModuleClass
class App(module.AbstractModule):
def getSrcs(self):
# Get all sources .c in current folder ./app/
# return [ 'app/app.c' ]
return self.getAllSrcsC()
def getIncs(self):
# Get all include paths in current folder ./app/
# return [ 'app/app.c' ]
return self.getAllIncsC()
The file app_mk.py could be more short and ease, e.g.:
# File app_mk.py
from pymakelib import module
# BasicCModule inherits from AbstractModule and implement getSrcs and getIncs.
@module.ModuleClass
class App(module.BasicCModule):
pass
The file app_mk.py in raw style:
# File app_mk.py
from pymakelib import module
@module.ModuleClass
class App():
def getSrcs(self):
return [
'app/app.c'
]
def getIncs(self):
return [
'app'
]
Remote modules could be load like static libraries and with special compiler flags. e.g:
# File extlib_mk.py
from pymakelib import module
@module.ModuleClass
class ExtLib(module.ExternalModule):
def init(self):
# Compile modulelib like static library (Optional)
return module.StaticLibrary("modulelib", "Release", rebuild=True)
def getModulePath(self)->str:
# Location of module
return '/LIBS/module_lib/module_lib_mk.py'
def getCompilerOpts(self):
# Override method and set speacial compiler flags (Optional)
opts = project.getCompilerOpts()
opts['CONTROL-C-OPTS'] = ['-std=c99']
return opts
For install guide go to install-guide
For more documentation go to Read the Docs
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file pymaketool-2.0.6.tar.gz.
File metadata
- Download URL: pymaketool-2.0.6.tar.gz
- Upload date:
- Size: 47.8 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.0 CPython/3.10.4
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
e730115ef9944bb62255b26c3cbd2270e499e7caab4ca1912a84117a3fc69d6e
|
|
| MD5 |
0bb5398ccbc6f4204f1d6fdd9912d192
|
|
| BLAKE2b-256 |
36166a160c509eba8c8e6947f1162259805d1bd11ab46d4ecec0323384872a48
|
File details
Details for the file pymaketool-2.0.6-py3-none-any.whl.
File metadata
- Download URL: pymaketool-2.0.6-py3-none-any.whl
- Upload date:
- Size: 67.4 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.0 CPython/3.10.4
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
1e36dc2b786fb71e103f7f961263ae867ab6b6c9c5ae967f700539274f744466
|
|
| MD5 |
1a4e77bd617ee0dca8b8c52b58c107f1
|
|
| BLAKE2b-256 |
9d1bbd644ff3c9e6d7f321e5cbb2958fd3cd43ba380b6cd00a52ec0e91d38bf6
|