Metadata-Version: 2.4
Name: makefile-generator
Version: 1.0.1
Summary: Generate makefiles with a function.
Author: Placewith5s
Keywords: c++,python,typescript,makefile,makefile-generator
Classifier: Development Status :: 5 - Production/Stable
Classifier: Intended Audience :: Developers
Description-Content-Type: text/markdown
License-File: LICENSE
Dynamic: license-file

# Makefile Generator Module

## Usage
Heads up: This is a Python-only module.

1. Install the module with pip:
```bash
pip install makefile-generator==1.0.1
```
2. Use the module by importing it:
```py
from mk_generator import create_write_mk
```
3. Call the function (`create_write_mk()`):
```py
create_write_mk("makefile", "main.cpp")
```

- Example usage file: [example.py](/example.py)

## Supported Languages
* C++
* Python
* TypeScript

## Features
- Self documented module
- The parameters of `create_write_mk()` can be autocompleted:
![Makefile name parameter](./autocomplete_images/mk_name.png)
![Target file name parameter](./autocomplete_images/target_file_name.png)
