Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/thanatisia/makefiles
a centralized, all-in-one Makefile template lookup repository
https://github.com/thanatisia/makefiles
Last synced: 13 days ago
JSON representation
a centralized, all-in-one Makefile template lookup repository
- Host: GitHub
- URL: https://github.com/thanatisia/makefiles
- Owner: Thanatisia
- License: mit
- Created: 2023-07-23T15:11:38.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2024-10-13T13:52:59.000Z (3 months ago)
- Last Synced: 2024-11-06T00:08:36.072Z (2 months ago)
- Language: Makefile
- Size: 52.7 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOGS.md
- Contributing: CONTRIBUTING.md
- License: LICENSE
Awesome Lists containing this project
README
# Makefiles all-in-one templates repository
## Information
### Background
```
The goal is to have a centralized, all-in-one Makefile template lookup repository
for various languages, technologies and categories that you can just Plug-and-Play
```## Setup
### Dependencies
#### Mandatory
- Build Tools
- Build Essentials: base-devel (pacman-based), build-essential (apt-based)
+ make
+ git#### Optionals
- C programming
+ gcc: The GNU C Compiler; typically packaged with the GNU core utils and base development packages
+ g++: The GNU C++ Compiler; typically packaged with the GNU core utils and base development packages
+ gdb: The GNU Debugger; Dumps out the application memory for debugging purposes
- C# programming
+ dotnet: The DotNet framework developed by Microsoft for C# Compilation, DotNet Web Applications (i.e ASP(dotnet))
+ roslyn: A generic, Open Source C# Compiler
- Java programming
+ java: Java CLI utility
+ javac: Java Compiler
- Rust programming
+ cargo: Rust project management utility
+ rustc: The Rust Compiler
- Python programming
+ python3: The python3 interpreter### Pre-Requisites
- For Windows
+ Install MinGW-w64 (for 64-bit)### How to use?
- Obtaining the Makefile
- Clone the repository
```console
git clone --recursive https://github.com/Thanatisia/makefiles
```
- Search for your target programming language
- Search for the Makefile templates
- Download the target Makefile
- Using curl
- Default
```console
curl -L -O https://raw.githubusercontent.com/Thanatisia/makefiles/main/tree/templates/[language].Makefile
```
- Using custom filename
```console
curl -L https://raw.githubusercontent.com/Thanatisia/makefiles/main/tree/templates/[language].Makefile Makefile
```- Modify the Makefile
+ According to necessity- Invoke/Execute the Makefile
- Default
```console
make
```
- Using custom filename
```console
make -f [language].Makefile
```## Documentations
### Currently supported templates
#### Programming Languages
+ [c](templates/c.Makefile)
+ [c++](templates/cpp.Makefile)
+ [python](templates/py.Makefile)
#### Technologies
+ [docker](templates/docker.Makefile)### Planned templates
#### Programming Languages
+ ASSEMBLY: as.Makefile
+ C#: cs.Makefile
+ Golang: go.Makefile
+ OCAML: ml.Makefile
+ Rust: rs.Makefile
+ Zig: zig.Makefile
#### Technologies
+ Dotnet: dotnet.Makefile
+ NodeJS: node.Makefile## Wiki
## Resources
## References
## Remarks