Metadata-Version: 2.1
Name: make-to-batch
Version: 0.1.1
Summary: A Makefile to Batch converter.
Home-page: https://github.com/espositoandrea/Make-to-Batch
Author: Andrea Esposito
Author-email: esposito_andrea99@hotmail.com
License: MIT
Download-URL: https://github.com/espositoandrea/Make-to-Batch/archive/v0.1.tar.gz
Description: # Makefile to Batch
        
        [![License](https://img.shields.io/github/license/espositoandrea/Make-to-Batch?style=for-the-badge)](https://github.com/espositoandrea/Make-to-Batch/blob/master/LICENSE)
        [![GitHub release (latest by date)](https://img.shields.io/github/v/release/espositoandrea/Make-to-Batch?style=for-the-badge)](https://github.com/espositoandrea/Make-to-Batch/releases/latest)
        
        This is a simple tool to convert a GNU Makefile into a Windows Batch file.
        
        ## Usage
        
        Install the tool by using [PyPI](https://pypi.org/project/make-to-batch/) using the following command:
        
        ```bash
        pip install make-to-batch
        ```
        
        You can also install by downloading the source code:
        
        ```bash
        cd path/to/source/
        python setup.py install
        ```
        
        The tool provides only a command, `make-to-batch`, that converts a Makefile in the current directory to a batch file in the same directory. The tool behaviour can be customized using some options: here is the help of the tool.
        
        ```fundamental
        $ make-to-batch -h
        usage: make-to-batch [-h] [-i INPUT] [-o OUTPUT]
        
        Convert a Makefile to a Batch (Windows) file.
        
        optional arguments:
          -h, --help            show this help message and exit
          -i INPUT, --input INPUT
                                The makefile to be converted. Defaults to './Makefile'
          -o OUTPUT, --output OUTPUT
                                The name of the output batch file. Defaults to
                                './make.bat'
        
        ```
        
Keywords: Makefile,Batch,Shell,Windows,Linux,Converter
Platform: UNKNOWN
Classifier: Development Status :: 3 - Alpha
Classifier: Intended Audience :: Developers
Classifier: Topic :: Utilities
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.4
Classifier: Programming Language :: Python :: 3.5
Classifier: Programming Language :: Python :: 3.6
Description-Content-Type: text/markdown
