Metadata-Version: 2.1
Name: makemakef
Version: 0.2.12
Summary: Command to create a Makefile to build nicely written Fortran code.
Home-page: https://github.com/Nkzono99/camptools
Author: Nkzono
Author-email: 71783375+Nkzono99@users.noreply.github.com
License: UNKNOWN
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.7
Description-Content-Type: text/markdown
License-File: LICENSE

# makemakef
Command to create a Makefile to build nicely written Fortran code.


## Usage
```
# For build .exe
makemakef -rc -s .F90 -n main.exe -fc gfortran

# For build .a
makemakef -rc -s .F90 -n libname.a -fc gfortran -lib

# Run make
make builddir  # create directories for build
make all  # or make test if test code exists
```


